結果
問題 | No.1000 Point Add and Array Add |
ユーザー | ryo_n |
提出日時 | 2020-02-28 23:34:18 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 737 bytes |
コンパイル時間 | 385 ms |
コンパイル使用メモリ | 81,920 KB |
実行使用メモリ | 109,648 KB |
最終ジャッジ日時 | 2024-10-13 19:19:56 |
合計ジャッジ時間 | 5,332 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 38 ms
56,960 KB |
testcase_01 | AC | 39 ms
52,224 KB |
testcase_02 | AC | 39 ms
52,096 KB |
testcase_03 | AC | 39 ms
52,096 KB |
testcase_04 | AC | 40 ms
51,968 KB |
testcase_05 | AC | 38 ms
51,584 KB |
testcase_06 | AC | 38 ms
51,712 KB |
testcase_07 | AC | 37 ms
51,712 KB |
testcase_08 | AC | 39 ms
52,096 KB |
testcase_09 | AC | 38 ms
51,968 KB |
testcase_10 | AC | 38 ms
52,096 KB |
testcase_11 | AC | 38 ms
52,096 KB |
testcase_12 | AC | 62 ms
66,816 KB |
testcase_13 | AC | 62 ms
65,792 KB |
testcase_14 | AC | 76 ms
72,320 KB |
testcase_15 | AC | 71 ms
70,400 KB |
testcase_16 | TLE | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
ソースコード
import sys import itertools sys.setrecursionlimit(10 ** 8) input = sys.stdin.readline def main(): N, Q = [int(x) for x in input().split()] A = [int(x) for x in input().split()] B = [0] * N CXY = [[x for x in input().split()] for _ in range(Q)] C = [0] * (N + 1) for c, x, y in CXY[::-1]: if c == 'A': ac = 0 for i in range(int(x)): ac += C[i] B[int(x) - 1] += ac * int(y) else: C[int(x) - 1] += 1 C[int(y)] -= 1 C_acc = list(itertools.accumulate(C)) for i, c in enumerate(C_acc): if i == N: break B[i] += A[i] * c print(*B) if __name__ == '__main__': main()