結果

問題 No.1338 Giant Class
ユーザー prussian_coderprussian_coder
提出日時 2022-06-18 20:12:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 345 ms / 2,000 ms
コード長 193 bytes
コンパイル時間 191 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 86,228 KB
最終ジャッジ日時 2024-10-10 11:08:51
合計ジャッジ時間 7,269 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,224 KB
testcase_01 AC 36 ms
51,712 KB
testcase_02 AC 336 ms
76,672 KB
testcase_03 AC 39 ms
52,608 KB
testcase_04 AC 46 ms
53,248 KB
testcase_05 AC 52 ms
59,136 KB
testcase_06 AC 259 ms
84,012 KB
testcase_07 AC 314 ms
85,848 KB
testcase_08 AC 232 ms
82,988 KB
testcase_09 AC 226 ms
82,816 KB
testcase_10 AC 342 ms
86,228 KB
testcase_11 AC 100 ms
76,924 KB
testcase_12 AC 264 ms
81,024 KB
testcase_13 AC 228 ms
82,432 KB
testcase_14 AC 114 ms
77,824 KB
testcase_15 AC 131 ms
78,764 KB
testcase_16 AC 95 ms
76,288 KB
testcase_17 AC 247 ms
82,944 KB
testcase_18 AC 116 ms
77,440 KB
testcase_19 AC 147 ms
79,232 KB
testcase_20 AC 345 ms
85,208 KB
testcase_21 AC 345 ms
85,344 KB
testcase_22 AC 345 ms
85,340 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

H,W,Q=map(int,input().split())
ans=H*W
d=dict()
for i in range(Q):
	a,b=map(int,input().split())
	if not b in d:
		d[b]=a
		ans-=H-a+1
	else:
		if d[b]>a:
			ans-=d[b]-a
			d[b]=a
	print(ans)		
0