본문 바로가기
python-algorithm

[백준] 1247

by 무적김두칠 2020. 12. 17.

1
2
3
4
5
6
7
8
9
10
import sys
tmp=[]
 
for i in range(3):
    for j in range(int(sys.stdin.readline())):
        tmp.append( int(sys.stdin.readline()))
    if sum(tmp)>0print("+")
    if sum(tmp) == 0print("0")
    if sum(tmp) < 0print("-")
    tmp=[]
cs

python은 그냥 되지만 C는 아마 long long int 를 써야 할 수도..?

반응형

'python-algorithm' 카테고리의 다른 글

[백준] 1598  (0) 2020.12.17
[백준] 1267  (0) 2020.12.17
[백준] 1085  (0) 2020.12.17
[백준] 19944  (0) 2020.12.17
[백준] 19698  (0) 2020.12.17

댓글