結果

問題 No.1000 Point Add and Array Add
ユーザー brthyyjpbrthyyjp
提出日時 2020-02-28 22:42:47
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 383 bytes
コンパイル時間 125 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 57,608 KB
最終ジャッジ日時 2024-10-13 18:34:01
合計ジャッジ時間 13,831 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 505 ms
49,200 KB
testcase_01 AC 504 ms
44,084 KB
testcase_02 AC 516 ms
43,700 KB
testcase_03 AC 496 ms
44,200 KB
testcase_04 AC 504 ms
43,820 KB
testcase_05 AC 508 ms
44,316 KB
testcase_06 AC 516 ms
43,564 KB
testcase_07 AC 499 ms
43,664 KB
testcase_08 AC 515 ms
43,704 KB
testcase_09 AC 497 ms
44,096 KB
testcase_10 AC 499 ms
43,816 KB
testcase_11 AC 500 ms
43,696 KB
testcase_12 AC 512 ms
44,492 KB
testcase_13 AC 512 ms
44,096 KB
testcase_14 AC 511 ms
44,028 KB
testcase_15 AC 513 ms
43,924 KB
testcase_16 TLE -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

n, q = map(int, input().split())
A = list(map(int, input().split()))

import numpy as np
A = np.array(A)
B = np.zeros(n, dtype = 'int64')

for _ in range(q):
    c, x, y = map(str, input().split())
    x = int(x)
    y = int(y)
    if c == 'A':
        x -= 1
        A[x] += y
    else:
        x, y = x-1, y-1
        B[x:y+1] += A[x:y+1]
#print(A)
#print(B)
B = list(B)
print(*B)
0