結果

問題 No.1338 Giant Class
ユーザー nessiennessien
提出日時 2024-12-13 12:25:18
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 190 ms / 2,000 ms
コード長 348 bytes
コンパイル時間 341 ms
コンパイル使用メモリ 82,360 KB
実行使用メモリ 95,892 KB
最終ジャッジ日時 2024-12-13 12:25:25
合計ジャッジ時間 6,619 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,016 KB
testcase_01 AC 37 ms
52,568 KB
testcase_02 AC 151 ms
81,352 KB
testcase_03 AC 39 ms
53,168 KB
testcase_04 AC 42 ms
54,060 KB
testcase_05 AC 47 ms
61,840 KB
testcase_06 AC 135 ms
86,472 KB
testcase_07 AC 190 ms
88,364 KB
testcase_08 AC 130 ms
85,108 KB
testcase_09 AC 133 ms
83,600 KB
testcase_10 AC 182 ms
95,484 KB
testcase_11 AC 83 ms
77,616 KB
testcase_12 AC 150 ms
89,056 KB
testcase_13 AC 129 ms
84,184 KB
testcase_14 AC 86 ms
78,124 KB
testcase_15 AC 93 ms
79,656 KB
testcase_16 AC 82 ms
76,608 KB
testcase_17 AC 135 ms
85,916 KB
testcase_18 AC 85 ms
78,284 KB
testcase_19 AC 96 ms
80,176 KB
testcase_20 AC 172 ms
95,724 KB
testcase_21 AC 175 ms
95,892 KB
testcase_22 AC 177 ms
95,776 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

H, W, Q = map(int,input().split())
y = [None]*Q
x = [None]*Q
for i in range(Q):
	y[i], x[i] = map(int,input().split())

#列の最大の行番号を記録する
D = {}
ans = H*W
for i in range(Q):
	if not x[i] in D:
		D[x[i]] = y[i]
		ans -= H-y[i]+1
	else:
		if D[x[i]] > y[i]:
			ans -= D[x[i]] - y[i]
			D.pop(x[i])
			D[x[i]] = y[i]
	print(ans)
0