結果

問題 No.1338 Giant Class
ユーザー Pretender324Pretender324
提出日時 2021-01-15 22:17:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 320 ms / 2,000 ms
コード長 361 bytes
コンパイル時間 347 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 87,364 KB
最終ジャッジ日時 2024-05-05 00:14:27
合計ジャッジ時間 6,022 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,120 KB
testcase_01 AC 43 ms
53,248 KB
testcase_02 AC 302 ms
76,928 KB
testcase_03 AC 43 ms
54,400 KB
testcase_04 AC 44 ms
54,912 KB
testcase_05 AC 50 ms
61,312 KB
testcase_06 AC 250 ms
83,712 KB
testcase_07 AC 304 ms
85,428 KB
testcase_08 AC 223 ms
83,584 KB
testcase_09 AC 217 ms
84,032 KB
testcase_10 AC 312 ms
87,364 KB
testcase_11 AC 97 ms
77,568 KB
testcase_12 AC 302 ms
82,516 KB
testcase_13 AC 211 ms
83,968 KB
testcase_14 AC 111 ms
78,336 KB
testcase_15 AC 143 ms
80,384 KB
testcase_16 AC 93 ms
77,056 KB
testcase_17 AC 215 ms
83,584 KB
testcase_18 AC 111 ms
78,332 KB
testcase_19 AC 140 ms
80,604 KB
testcase_20 AC 312 ms
87,020 KB
testcase_21 AC 320 ms
87,296 KB
testcase_22 AC 320 ms
87,268 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