結果

問題 No.865 24時間降水量
ユーザー maspymaspy
提出日時 2020-03-19 03:33:33
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
(最新)
AC  
(最初)
実行時間 -
コード長 534 bytes
コンパイル時間 108 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 67,956 KB
最終ジャッジ日時 2024-05-08 03:01:52
合計ジャッジ時間 18,107 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 486 ms
43,712 KB
testcase_01 AC 479 ms
43,712 KB
testcase_02 AC 486 ms
43,580 KB
testcase_03 AC 475 ms
43,808 KB
testcase_04 AC 473 ms
43,828 KB
testcase_05 AC 484 ms
43,696 KB
testcase_06 AC 478 ms
43,828 KB
testcase_07 AC 489 ms
43,700 KB
testcase_08 AC 481 ms
43,704 KB
testcase_09 AC 475 ms
43,424 KB
testcase_10 AC 568 ms
43,896 KB
testcase_11 AC 572 ms
43,808 KB
testcase_12 AC 546 ms
43,832 KB
testcase_13 AC 554 ms
43,696 KB
testcase_14 AC 554 ms
43,452 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 AC 475 ms
43,828 KB
testcase_19 AC 471 ms
43,968 KB
testcase_20 AC 496 ms
43,808 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3.8
import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines
import numpy as np

N = int(readline())
A = np.array(readline().split(), np.int64)
Q = int(readline())
m = map(int, read().split())
TV = zip(m, m)
Acum = np.cumsum(A)
A24 = Acum[23:]
A24[1:] -= Acum[:-24]
best = A24.max()

for t, v in TV:
    dx = v - A[t - 1]
    A[t - 1] = v
    L = max(t - 24, 0)
    A24[L:t] += dx
    y = A24[L:t].max()
    if best < y:
        best = y
    print(best)
0