본문 바로가기
python-algorithm

[백준] 1392

by 무적김두칠 2021. 1. 6.

1
2
3
4
5
6
7
8
9
10
11
import sys
n,q = map(int,sys.stdin.readline().split())
tmp=[0]
cnt=0
for i in range(n):
    cnt+= int(sys.stdin.readline())
    tmp.append(cnt)
for i in range(q):
    test=int(sys.stdin.readline())
    for _ in range(len(tmp)):
        if tmp[_]<= test and test <tmp[_+1]: print(_+1)
cs

 

반응형

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

[백준] 1551  (0) 2021.01.06
[백준] 1434  (0) 2021.01.06
[백준] 1350  (0) 2021.01.06
[백준] 1264  (0) 2021.01.06
[백준] 1233  (0) 2021.01.05

댓글