結果

問題 No.1338 Giant Class
ユーザー Pretender324Pretender324
提出日時 2021-01-15 22:17:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 382 ms / 2,000 ms
コード長 361 bytes
コンパイル時間 215 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 87,248 KB
最終ジャッジ日時 2024-11-26 15:52:15
合計ジャッジ時間 6,809 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
53,632 KB
testcase_01 AC 45 ms
53,376 KB
testcase_02 AC 300 ms
76,672 KB
testcase_03 AC 48 ms
54,144 KB
testcase_04 AC 51 ms
54,912 KB
testcase_05 AC 59 ms
61,312 KB
testcase_06 AC 273 ms
83,584 KB
testcase_07 AC 331 ms
85,432 KB
testcase_08 AC 252 ms
83,840 KB
testcase_09 AC 248 ms
83,840 KB
testcase_10 AC 381 ms
87,248 KB
testcase_11 AC 115 ms
77,312 KB
testcase_12 AC 308 ms
82,524 KB
testcase_13 AC 256 ms
83,584 KB
testcase_14 AC 142 ms
78,464 KB
testcase_15 AC 156 ms
80,128 KB
testcase_16 AC 119 ms
77,440 KB
testcase_17 AC 251 ms
83,584 KB
testcase_18 AC 136 ms
78,080 KB
testcase_19 AC 168 ms
80,384 KB
testcase_20 AC 382 ms
87,028 KB
testcase_21 AC 358 ms
86,636 KB
testcase_22 AC 365 ms
87,172 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

H, W, Q = map(int, input().split())
A = defaultdict(lambda: float('inf'))
ans = H * W
for _ in range(Q):
    Y, X = map(int, input().split())
    if A[X] == float('inf'):
        ans -= H - Y + 1
        A[X] = Y - 1
    else:
        if A[X] > Y - 1:
            ans -= A[X] - Y + 1
            A[X] = Y - 1
    print(ans)
0