結果

問題 No.865 24時間降水量
ユーザー titiatitia
提出日時 2019-08-17 03:33:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 391 ms / 2,000 ms
コード長 467 bytes
コンパイル時間 137 ms
コンパイル使用メモリ 82,052 KB
実行使用メモリ 105,972 KB
最終ジャッジ日時 2024-09-24 18:07:33
合計ジャッジ時間 3,473 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
53,408 KB
testcase_01 AC 34 ms
53,308 KB
testcase_02 AC 35 ms
52,200 KB
testcase_03 AC 34 ms
52,460 KB
testcase_04 AC 35 ms
52,124 KB
testcase_05 AC 66 ms
72,936 KB
testcase_06 AC 68 ms
73,256 KB
testcase_07 AC 71 ms
74,260 KB
testcase_08 AC 66 ms
72,988 KB
testcase_09 AC 68 ms
74,008 KB
testcase_10 AC 114 ms
78,264 KB
testcase_11 AC 109 ms
78,000 KB
testcase_12 AC 114 ms
77,916 KB
testcase_13 AC 121 ms
78,132 KB
testcase_14 AC 112 ms
78,220 KB
testcase_15 AC 375 ms
105,692 KB
testcase_16 AC 385 ms
105,972 KB
testcase_17 AC 391 ms
105,732 KB
testcase_18 AC 36 ms
52,988 KB
testcase_19 AC 34 ms
52,348 KB
testcase_20 AC 36 ms
53,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
A=list(map(int,input().split()))
Q=int(input())
Query=[list(map(int,input().split())) for i in range(Q)]

S=sum(A[:24])
MAX=S
for i in range(24,N):
    S+=A[i]-A[i-24]
    MAX=max(MAX,S)

def MAX_from_i(q):
    from_q=max(q,24)
    S=sum(A[from_q-24:from_q])
    MAX=S
    for i in range(from_q,min(q+25,N)):
        S+=A[i]-A[i-24]
        MAX=max(MAX,S)

    return MAX

for t,v in Query:
    A[t-1]=v
    MAX=max(MAX,MAX_from_i(t-1))

    print(MAX)
0