結果

問題 No.1338 Giant Class
ユーザー H20H20
提出日時 2021-01-15 21:56:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 353 ms / 2,000 ms
コード長 235 bytes
コンパイル時間 508 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 86,024 KB
最終ジャッジ日時 2024-11-26 14:27:40
合計ジャッジ時間 6,295 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
53,504 KB
testcase_01 AC 42 ms
53,376 KB
testcase_02 AC 299 ms
77,056 KB
testcase_03 AC 45 ms
54,272 KB
testcase_04 AC 51 ms
55,040 KB
testcase_05 AC 53 ms
60,672 KB
testcase_06 AC 245 ms
83,200 KB
testcase_07 AC 313 ms
83,856 KB
testcase_08 AC 241 ms
83,052 KB
testcase_09 AC 230 ms
83,328 KB
testcase_10 AC 350 ms
86,024 KB
testcase_11 AC 105 ms
76,672 KB
testcase_12 AC 272 ms
81,180 KB
testcase_13 AC 230 ms
83,072 KB
testcase_14 AC 121 ms
77,696 KB
testcase_15 AC 141 ms
78,976 KB
testcase_16 AC 103 ms
76,712 KB
testcase_17 AC 232 ms
83,072 KB
testcase_18 AC 121 ms
77,440 KB
testcase_19 AC 155 ms
79,964 KB
testcase_20 AC 349 ms
84,988 KB
testcase_21 AC 346 ms
85,852 KB
testcase_22 AC 353 ms
84,604 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
H,W,Q = map(int, input().split())
d = defaultdict(lambda: H)
ans = H*W
for i in range(Q):
    Y,X = map(int, input().split())
    if d[X]>=Y:
        ans -= d[X]-Y+1
        d[X]= Y-1
    print(ans)
0