結果

問題 No.11 カードマッチ
ユーザー ciirociiro
提出日時 2021-12-11 23:11:23
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 72 ms / 5,000 ms
コード長 279 bytes
コンパイル時間 118 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 26,368 KB
最終ジャッジ日時 2024-07-20 06:29:58
合計ジャッジ時間 1,704 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 31 ms
10,624 KB
testcase_03 AC 31 ms
10,752 KB
testcase_04 AC 47 ms
17,280 KB
testcase_05 AC 30 ms
10,624 KB
testcase_06 AC 72 ms
26,240 KB
testcase_07 AC 43 ms
15,872 KB
testcase_08 AC 49 ms
18,688 KB
testcase_09 AC 65 ms
26,368 KB
testcase_10 AC 59 ms
23,168 KB
testcase_11 AC 60 ms
21,888 KB
testcase_12 AC 58 ms
22,400 KB
testcase_13 AC 56 ms
21,504 KB
testcase_14 AC 46 ms
16,512 KB
testcase_15 AC 31 ms
10,624 KB
testcase_16 AC 31 ms
11,136 KB
testcase_17 AC 32 ms
11,136 KB
testcase_18 AC 32 ms
11,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

w = int(input())
h = int(input())
n = int(input())

wc , hc = 0 , 0
wl = [0] * (w + 1)
hl = [0] * (h + 1)
for i in range(n):
	s,k = map(int,input().split())
	if wl[s] == 0:
		wl[s] = 1
	if hl[k] == 0:
		hl[k] = 1

ws , hs = sum(wl) , sum(hl)

print(h * ws + w * hs - ws * hs - n)
0