結果

問題 No.1338 Giant Class
ユーザー qibqib
提出日時 2023-01-15 13:56:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 321 ms / 2,000 ms
コード長 223 bytes
コンパイル時間 450 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 86,756 KB
最終ジャッジ日時 2024-06-08 17:08:12
合計ジャッジ時間 7,245 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,224 KB
testcase_01 AC 34 ms
52,096 KB
testcase_02 AC 282 ms
76,160 KB
testcase_03 AC 38 ms
52,992 KB
testcase_04 AC 40 ms
53,632 KB
testcase_05 AC 48 ms
59,648 KB
testcase_06 AC 221 ms
82,840 KB
testcase_07 AC 284 ms
84,872 KB
testcase_08 AC 217 ms
82,828 KB
testcase_09 AC 221 ms
82,948 KB
testcase_10 AC 299 ms
86,756 KB
testcase_11 AC 100 ms
76,892 KB
testcase_12 AC 248 ms
81,152 KB
testcase_13 AC 204 ms
82,944 KB
testcase_14 AC 114 ms
77,376 KB
testcase_15 AC 129 ms
78,844 KB
testcase_16 AC 94 ms
76,288 KB
testcase_17 AC 216 ms
82,816 KB
testcase_18 AC 113 ms
77,696 KB
testcase_19 AC 139 ms
79,744 KB
testcase_20 AC 300 ms
85,432 KB
testcase_21 AC 321 ms
85,688 KB
testcase_22 AC 308 ms
85,688 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

h, w, q = map(int, input().split())

ans = h * w
lb = {}
for _ in range(q):
  yi, xi = map(int, input().split())
  lb.setdefault(xi, h + 1)
  ans -= (lb[xi] - 1)
  lb[xi] = min(lb[xi], yi)
  ans += (lb[xi] - 1)
  print(ans)
0