# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
919889 | 2024-02-01T19:25:17 Z | vjudge1 | 원숭이와 사과 나무 (IZhO12_apple) | Python 3 | 55 ms | 262144 KB |
M = int(input()) apple_trees = [0] * 1000000000 # initialize list with all zeros C = 0 for _ in range(M): D, X, Y = map(int, input().split()) if D == 1: count = 0 for i in range(X+C, Y+C+1): if apple_trees[i] == 1: count += 1 print(count) C = count elif D == 2: for i in range(X+C, Y+C+1): apple_trees[i] = 1
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Runtime error | 55 ms | 262144 KB | Execution killed with signal 9 |
2 | Halted | 0 ms | 0 KB | - |