結果

問題 No.865 24時間降水量
ユーザー H3PO4H3PO4
提出日時 2021-03-01 09:08:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 243 ms / 2,000 ms
コード長 413 bytes
コンパイル時間 319 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 103,296 KB
最終ジャッジ日時 2024-10-03 00:46:51
合計ジャッジ時間 3,295 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
51,840 KB
testcase_01 AC 42 ms
51,840 KB
testcase_02 AC 43 ms
51,840 KB
testcase_03 AC 42 ms
52,096 KB
testcase_04 AC 42 ms
51,584 KB
testcase_05 AC 66 ms
65,408 KB
testcase_06 AC 63 ms
64,896 KB
testcase_07 AC 65 ms
64,768 KB
testcase_08 AC 66 ms
65,484 KB
testcase_09 AC 63 ms
64,896 KB
testcase_10 AC 81 ms
72,704 KB
testcase_11 AC 82 ms
72,576 KB
testcase_12 AC 81 ms
72,704 KB
testcase_13 AC 84 ms
72,576 KB
testcase_14 AC 82 ms
72,448 KB
testcase_15 AC 243 ms
103,168 KB
testcase_16 AC 239 ms
103,296 KB
testcase_17 AC 233 ms
103,168 KB
testcase_18 AC 41 ms
51,712 KB
testcase_19 AC 41 ms
51,584 KB
testcase_20 AC 41 ms
51,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

input = sys.stdin.buffer.readline

N = int(input())
A = list(map(int, input().split()))
table = [sum(A[i:i + 24]) for i in range(N - 23)]
Q = int(input())
ans = max(table)
for _ in range(Q):
    T, V = map(int, input().split())
    T -= 1
    diff = V - A[T]
    A[T] = V
    for i in range(max(0, T - 23), min(N - 24, T) + 1):
        table[i] += diff
        ans = max(ans, table[i])
    print(ans)
0