結果

問題 No.1338 Giant Class
ユーザー H3PO4H3PO4
提出日時 2021-01-15 21:45:29
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 878 ms / 2,000 ms
コード長 262 bytes
コンパイル時間 287 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 24,112 KB
最終ジャッジ日時 2024-11-26 13:54:19
合計ジャッジ時間 10,382 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,624 KB
testcase_01 AC 28 ms
10,496 KB
testcase_02 AC 689 ms
10,624 KB
testcase_03 AC 27 ms
10,496 KB
testcase_04 AC 27 ms
10,496 KB
testcase_05 AC 28 ms
10,624 KB
testcase_06 AC 473 ms
17,372 KB
testcase_07 AC 658 ms
23,692 KB
testcase_08 AC 436 ms
17,112 KB
testcase_09 AC 416 ms
17,496 KB
testcase_10 AC 719 ms
23,728 KB
testcase_11 AC 91 ms
11,392 KB
testcase_12 AC 519 ms
17,368 KB
testcase_13 AC 452 ms
17,240 KB
testcase_14 AC 131 ms
12,152 KB
testcase_15 AC 198 ms
13,804 KB
testcase_16 AC 80 ms
11,392 KB
testcase_17 AC 480 ms
17,368 KB
testcase_18 AC 148 ms
12,276 KB
testcase_19 AC 261 ms
13,928 KB
testcase_20 AC 878 ms
23,984 KB
testcase_21 AC 822 ms
23,728 KB
testcase_22 AC 805 ms
24,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

H, W, Q = map(int, input().split())
col = defaultdict(lambda: H)
cur = H * W

for _ in range(Q):
    Y, X = (int(x) - 1 for x in input().split())
    if col[X] > Y:
        cur -= col[X] - Y
        col[X] = Y
    print(cur)
0