結果

問題 No.865 24時間降水量
ユーザー suika_psuika_p
提出日時 2019-08-17 00:30:50
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 454 bytes
コンパイル時間 136 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 30,316 KB
最終ジャッジ日時 2024-09-23 05:55:25
合計ジャッジ時間 5,544 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
16,128 KB
testcase_01 AC 31 ms
10,624 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 31 ms
10,624 KB
testcase_05 AC 49 ms
10,496 KB
testcase_06 AC 50 ms
10,752 KB
testcase_07 AC 49 ms
10,624 KB
testcase_08 AC 50 ms
10,752 KB
testcase_09 AC 48 ms
10,624 KB
testcase_10 AC 205 ms
10,880 KB
testcase_11 AC 204 ms
10,624 KB
testcase_12 AC 206 ms
10,624 KB
testcase_13 AC 204 ms
10,752 KB
testcase_14 AC 204 ms
10,752 KB
testcase_15 TLE -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split()))
Q = int(input())

s = [0] * (N+1)
for i in range(N):
    if i >= 24:
        s[i+1] = s[i] + A[i] - A[i-24]
    else:
        s[i+1] = s[i] + A[i]

res = max(s)

for q in range(Q):
    T, V = map(int, input().split())
    diff = V - A[T-1]
    A[T-1] = V
    for i in range(24):
        if T+i <= N:
            s[T+i] += diff
            if res <= s[T+i]:
                res = s[T+i]
    print(res)
0