結果

問題 No.1338 Giant Class
ユーザー H3PO4H3PO4
提出日時 2021-01-15 21:45:29
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 848 ms / 2,000 ms
コード長 262 bytes
コンパイル時間 131 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 23,984 KB
最終ジャッジ日時 2024-05-04 23:16:20
合計ジャッジ時間 10,863 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,624 KB
testcase_01 AC 27 ms
10,496 KB
testcase_02 AC 736 ms
10,624 KB
testcase_03 AC 28 ms
10,752 KB
testcase_04 AC 28 ms
10,624 KB
testcase_05 AC 31 ms
10,624 KB
testcase_06 AC 530 ms
17,244 KB
testcase_07 AC 675 ms
23,984 KB
testcase_08 AC 474 ms
17,240 KB
testcase_09 AC 428 ms
17,240 KB
testcase_10 AC 798 ms
23,860 KB
testcase_11 AC 104 ms
11,648 KB
testcase_12 AC 594 ms
17,244 KB
testcase_13 AC 476 ms
17,368 KB
testcase_14 AC 136 ms
12,280 KB
testcase_15 AC 198 ms
13,936 KB
testcase_16 AC 84 ms
11,648 KB
testcase_17 AC 460 ms
17,248 KB
testcase_18 AC 142 ms
12,404 KB
testcase_19 AC 238 ms
14,060 KB
testcase_20 AC 848 ms
23,860 KB
testcase_21 AC 841 ms
23,856 KB
testcase_22 AC 843 ms
23,820 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