結果

問題 No.865 24時間降水量
ユーザー stngstng
提出日時 2022-07-24 21:18:41
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 883 bytes
コンパイル時間 246 ms
コンパイル使用メモリ 82,532 KB
実行使用メモリ 110,104 KB
最終ジャッジ日時 2024-07-06 16:32:16
合計ジャッジ時間 5,558 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
53,660 KB
testcase_01 AC 32 ms
54,016 KB
testcase_02 AC 31 ms
53,028 KB
testcase_03 WA -
testcase_04 AC 34 ms
54,288 KB
testcase_05 AC 74 ms
76,472 KB
testcase_06 AC 73 ms
76,372 KB
testcase_07 AC 74 ms
76,612 KB
testcase_08 AC 73 ms
76,796 KB
testcase_09 AC 71 ms
76,720 KB
testcase_10 AC 123 ms
78,044 KB
testcase_11 AC 119 ms
77,844 KB
testcase_12 AC 117 ms
78,112 KB
testcase_13 AC 123 ms
77,844 KB
testcase_14 AC 131 ms
78,144 KB
testcase_15 AC 1,056 ms
110,104 KB
testcase_16 AC 1,036 ms
110,040 KB
testcase_17 AC 1,027 ms
110,064 KB
testcase_18 AC 32 ms
53,464 KB
testcase_19 AC 32 ms
52,956 KB
testcase_20 AC 32 ms
53,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = [int(i) for i in input().split()]
q = int(input())
tv = [[int(i) for i in input().split()] for j in range(q)]

class Bit:
    def __init__(self, n):
        self.size = n
        self.tree = [0] * (n + 1)
 
    def sum(self, i):
        s = 0
        while i > 0:
            s += self.tree[i]
            i -= i & -i
        return s
 
    def add(self, i, x):
        while i <= self.size:
            self.tree[i] += x
            i += i & -i

ki = Bit(n+1)
for i in range(n):
    ki.add(i+1,a[i])

ans = 0
for i in range(n-24):
    tmp = ki.sum(i+1+24)-ki.sum(i+1)
    ans = max(ans,tmp)

for i in range(q):
    t,v = tv[i]
    ki.add(t,v - (ki.sum(t)-ki.sum(t-1)))
    for j in range(24):
        if t-24+j < 0:
            continue
        if t+j > n:
            continue
        tmp = ki.sum(t+j)-ki.sum(t-24+j)
        ans = max(ans,tmp)
    print(ans)
0