結果

問題 No.1338 Giant Class
ユーザー Kiri8128Kiri8128
提出日時 2021-01-15 23:14:12
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 756 ms / 2,000 ms
コード長 255 bytes
コンパイル時間 196 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 23,984 KB
最終ジャッジ日時 2024-11-26 17:22:50
合計ジャッジ時間 9,783 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,496 KB
testcase_01 AC 28 ms
10,368 KB
testcase_02 AC 643 ms
10,752 KB
testcase_03 AC 28 ms
10,496 KB
testcase_04 AC 27 ms
10,624 KB
testcase_05 AC 28 ms
10,624 KB
testcase_06 AC 452 ms
17,120 KB
testcase_07 AC 651 ms
23,732 KB
testcase_08 AC 423 ms
17,116 KB
testcase_09 AC 400 ms
17,160 KB
testcase_10 AC 748 ms
23,984 KB
testcase_11 AC 88 ms
11,520 KB
testcase_12 AC 536 ms
17,368 KB
testcase_13 AC 425 ms
17,372 KB
testcase_14 AC 135 ms
12,408 KB
testcase_15 AC 181 ms
13,812 KB
testcase_16 AC 79 ms
11,520 KB
testcase_17 AC 434 ms
17,376 KB
testcase_18 AC 128 ms
12,280 KB
testcase_19 AC 209 ms
14,060 KB
testcase_20 AC 756 ms
23,968 KB
testcase_21 AC 720 ms
23,864 KB
testcase_22 AC 701 ms
23,864 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