結果

問題 No.1338 Giant Class
ユーザー googol_S0googol_S0
提出日時 2021-01-15 21:34:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 346 ms / 2,000 ms
コード長 155 bytes
コンパイル時間 194 ms
コンパイル使用メモリ 82,312 KB
実行使用メモリ 86,912 KB
最終ジャッジ日時 2024-11-26 13:29:07
合計ジャッジ時間 6,270 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,200 KB
testcase_01 AC 36 ms
51,200 KB
testcase_02 AC 291 ms
76,416 KB
testcase_03 AC 39 ms
51,840 KB
testcase_04 AC 43 ms
52,736 KB
testcase_05 AC 49 ms
59,520 KB
testcase_06 AC 250 ms
82,560 KB
testcase_07 AC 325 ms
84,872 KB
testcase_08 AC 221 ms
82,596 KB
testcase_09 AC 238 ms
81,152 KB
testcase_10 AC 335 ms
85,756 KB
testcase_11 AC 124 ms
76,800 KB
testcase_12 AC 252 ms
80,384 KB
testcase_13 AC 238 ms
81,872 KB
testcase_14 AC 118 ms
76,800 KB
testcase_15 AC 156 ms
78,420 KB
testcase_16 AC 100 ms
75,776 KB
testcase_17 AC 238 ms
82,944 KB
testcase_18 AC 118 ms
77,184 KB
testcase_19 AC 145 ms
79,104 KB
testcase_20 AC 338 ms
85,580 KB
testcase_21 AC 346 ms
85,700 KB
testcase_22 AC 342 ms
86,912 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

H,W,Q=map(int,input().split())
D=dict()
P=H*W
for i in range(Q):
  Y,X=map(int,input().split())
  Z=D.get(X,H+1)
  if Z>Y:
    P-=Z-Y
    D[X]=Y
  print(P)
0