結果

問題 No.1000 Point Add and Array Add
ユーザー chinchillachinchilla
提出日時 2020-03-01 15:33:43
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 442 bytes
コンパイル時間 361 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 89,332 KB
最終ジャッジ日時 2024-10-13 20:42:34
合計ジャッジ時間 16,378 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,496 KB
testcase_01 AC 32 ms
10,624 KB
testcase_02 AC 29 ms
10,496 KB
testcase_03 AC 29 ms
10,496 KB
testcase_04 AC 30 ms
10,624 KB
testcase_05 AC 30 ms
10,624 KB
testcase_06 AC 30 ms
10,496 KB
testcase_07 AC 29 ms
10,624 KB
testcase_08 AC 30 ms
10,496 KB
testcase_09 AC 29 ms
10,624 KB
testcase_10 AC 30 ms
10,624 KB
testcase_11 AC 30 ms
10,624 KB
testcase_12 AC 40 ms
11,136 KB
testcase_13 AC 38 ms
11,136 KB
testcase_14 AC 46 ms
11,648 KB
testcase_15 AC 39 ms
11,136 KB
testcase_16 AC 1,263 ms
64,280 KB
testcase_17 AC 1,229 ms
57,612 KB
testcase_18 AC 1,886 ms
84,988 KB
testcase_19 AC 1,973 ms
85,244 KB
testcase_20 AC 1,263 ms
73,348 KB
testcase_21 TLE -
testcase_22 AC 1,531 ms
86,140 KB
testcase_23 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
n = int(input().split()[0])
a = list(map(int, input().split()))
q = [s.split() for s in sys.stdin]
b = [0]*n
t = [0]*(1+n)
l = [0]*(n+1)
for c, x, y in reversed(q):
	x, y = int(x), int(y)
	if c>'A':
		for i, d in [(x, 1), (y+1, -1)]:
			l[i-1] += d
			while i<=n:
				t[i] += d
				i += i&-i
	else:
		s, i = 0, x
		while i:
			s += t[i]
			i -= i&-i
		b[x-1] += s * y
s = 0
for i in range(n):
	s += l[i]
	b[i] += s * a[i]
print(*b)
0