結果

問題 No.1338 Giant Class
ユーザー Kiri8128Kiri8128
提出日時 2021-01-15 23:14:12
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 757 ms / 2,000 ms
コード長 255 bytes
コンパイル時間 225 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 23,992 KB
最終ジャッジ日時 2024-05-05 01:06:44
合計ジャッジ時間 10,152 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,496 KB
testcase_01 AC 27 ms
10,496 KB
testcase_02 AC 669 ms
10,752 KB
testcase_03 AC 27 ms
10,496 KB
testcase_04 AC 28 ms
10,752 KB
testcase_05 AC 29 ms
10,624 KB
testcase_06 AC 483 ms
17,252 KB
testcase_07 AC 673 ms
23,992 KB
testcase_08 AC 438 ms
17,416 KB
testcase_09 AC 415 ms
17,376 KB
testcase_10 AC 744 ms
23,992 KB
testcase_11 AC 102 ms
11,520 KB
testcase_12 AC 564 ms
17,364 KB
testcase_13 AC 431 ms
17,244 KB
testcase_14 AC 145 ms
12,284 KB
testcase_15 AC 189 ms
13,936 KB
testcase_16 AC 83 ms
11,520 KB
testcase_17 AC 429 ms
17,248 KB
testcase_18 AC 139 ms
12,412 KB
testcase_19 AC 214 ms
14,064 KB
testcase_20 AC 757 ms
23,992 KB
testcase_21 AC 728 ms
23,904 KB
testcase_22 AC 745 ms
23,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
D = defaultdict(int)
H, W, Q = map(int, input().split())
s = H * W
for _ in range(Q):
    i, j = map(int, input().split())
    i, j = H - i + 1, j - 1
    if i > D[j]:
        s -= i - D[j]
        D[j] = i
    print(s)
0