結果

問題 No.865 24時間降水量
ユーザー kohei2019kohei2019
提出日時 2022-05-04 14:01:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,620 ms / 2,000 ms
コード長 424 bytes
コンパイル時間 268 ms
コンパイル使用メモリ 82,108 KB
実行使用メモリ 104,644 KB
最終ジャッジ日時 2024-07-03 16:37:34
合計ジャッジ時間 7,790 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
58,308 KB
testcase_01 AC 41 ms
57,988 KB
testcase_02 AC 40 ms
58,388 KB
testcase_03 AC 40 ms
59,124 KB
testcase_04 AC 40 ms
59,576 KB
testcase_05 AC 85 ms
76,476 KB
testcase_06 AC 89 ms
76,616 KB
testcase_07 AC 88 ms
76,432 KB
testcase_08 AC 87 ms
76,680 KB
testcase_09 AC 94 ms
76,304 KB
testcase_10 AC 175 ms
77,432 KB
testcase_11 AC 180 ms
77,576 KB
testcase_12 AC 178 ms
77,984 KB
testcase_13 AC 185 ms
77,460 KB
testcase_14 AC 176 ms
77,548 KB
testcase_15 AC 1,620 ms
104,228 KB
testcase_16 AC 1,576 ms
104,644 KB
testcase_17 AC 1,549 ms
104,408 KB
testcase_18 AC 37 ms
53,448 KB
testcase_19 AC 43 ms
59,668 KB
testcase_20 AC 41 ms
58,064 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
lsA = list(map(int,input().split()))
Q = int(input())
lsTV = []
for i in range(Q):
    t,v = map(int,input().split())
    lsTV.append((t-1,v))
maxp = 0
for i in range(N-23):
    maxp = max(maxp,sum(lsA[i:i+24]))

for i in range(Q):
    t,v = lsTV[i]
    l,r = max(0,t-24),t+24
    lsA[t] = v
    for j in range(l,r):
        sm = sum(lsA[j:j+24])
        if maxp < sm:
            maxp = sm
    print(maxp)
0