結果

問題 No.865 24時間降水量
ユーザー tamatotamato
提出日時 2020-03-09 23:14:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 178 ms / 2,000 ms
コード長 554 bytes
コンパイル時間 322 ms
コンパイル使用メモリ 82,284 KB
実行使用メモリ 105,344 KB
最終ジャッジ日時 2024-11-15 18:30:07
合計ジャッジ時間 3,748 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
51,840 KB
testcase_01 AC 40 ms
51,584 KB
testcase_02 AC 40 ms
52,224 KB
testcase_03 AC 41 ms
51,840 KB
testcase_04 AC 41 ms
51,840 KB
testcase_05 AC 55 ms
62,720 KB
testcase_06 AC 56 ms
62,464 KB
testcase_07 AC 56 ms
62,848 KB
testcase_08 AC 55 ms
62,592 KB
testcase_09 AC 56 ms
62,592 KB
testcase_10 AC 74 ms
71,040 KB
testcase_11 AC 74 ms
71,808 KB
testcase_12 AC 74 ms
71,680 KB
testcase_13 AC 81 ms
76,160 KB
testcase_14 AC 75 ms
71,808 KB
testcase_15 AC 178 ms
105,344 KB
testcase_16 AC 177 ms
105,344 KB
testcase_17 AC 178 ms
105,344 KB
testcase_18 AC 40 ms
51,968 KB
testcase_19 AC 40 ms
51,968 KB
testcase_20 AC 40 ms
51,840 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def main():
    import sys
    input = sys.stdin.buffer.readline

    N = int(input())
    A = list(map(int, input().split()))
    B = [0] * (N-24+1)
    B[0] = sum(A[:24])
    for i in range(1, len(B)):
        B[i] = B[i-1] + A[i+24-1] - A[i-1]
    M = max(B)
    for _ in range(int(input())):
        t, v = map(int, input().split())
        t -= 1
        d = v - A[t]
        A[t] = v
        for i in range(max(0, t - 23), min(N-23, t+1)):
            B[i] += d
            M = max(M, B[i])
        print(M)


if __name__ == '__main__':
    main()
0