結果

問題 No.865 24時間降水量
ユーザー vwxyzvwxyz
提出日時 2024-04-14 12:53:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,085 ms / 2,000 ms
コード長 294 bytes
コンパイル時間 272 ms
コンパイル使用メモリ 82,440 KB
実行使用メモリ 109,128 KB
最終ジャッジ日時 2024-10-03 10:48:36
合計ジャッジ時間 5,604 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
58,904 KB
testcase_01 AC 40 ms
59,152 KB
testcase_02 AC 41 ms
59,592 KB
testcase_03 AC 40 ms
59,656 KB
testcase_04 AC 40 ms
58,392 KB
testcase_05 AC 76 ms
76,640 KB
testcase_06 AC 67 ms
76,332 KB
testcase_07 AC 65 ms
76,240 KB
testcase_08 AC 69 ms
76,720 KB
testcase_09 AC 66 ms
76,428 KB
testcase_10 AC 115 ms
76,572 KB
testcase_11 AC 112 ms
76,672 KB
testcase_12 AC 109 ms
76,180 KB
testcase_13 AC 112 ms
76,492 KB
testcase_14 AC 113 ms
76,672 KB
testcase_15 AC 1,016 ms
109,056 KB
testcase_16 AC 1,085 ms
109,128 KB
testcase_17 AC 1,056 ms
109,116 KB
testcase_18 AC 36 ms
58,584 KB
testcase_19 AC 38 ms
60,012 KB
testcase_20 AC 35 ms
58,300 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
inf=1<<60
A=[-inf]*30+list(map(int,input().split()))+[-inf]*30
Q=int(input())
ans=max(sum(A[i:i+24]) for i in range(N+60-23))
for q in range(Q):
    T,V=map(int,input().split())
    T+=29
    A[T]=V
    for i in range(T-23,T+1):
        ans=max(ans,sum(A[i:i+24]))
    print(ans)
0