結果

問題 No.11 カードマッチ
ユーザー akanayaakanaya
提出日時 2020-03-31 14:47:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 71 ms / 5,000 ms
コード長 357 bytes
コンパイル時間 464 ms
コンパイル使用メモリ 82,028 KB
実行使用メモリ 73,784 KB
最終ジャッジ日時 2024-06-24 15:08:45
合計ジャッジ時間 2,186 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,700 KB
testcase_01 AC 38 ms
52,676 KB
testcase_02 AC 38 ms
52,364 KB
testcase_03 AC 38 ms
51,872 KB
testcase_04 AC 54 ms
63,568 KB
testcase_05 AC 38 ms
52,492 KB
testcase_06 AC 69 ms
73,508 KB
testcase_07 AC 52 ms
63,028 KB
testcase_08 AC 57 ms
65,512 KB
testcase_09 AC 71 ms
73,784 KB
testcase_10 AC 64 ms
70,668 KB
testcase_11 AC 63 ms
69,188 KB
testcase_12 AC 63 ms
68,352 KB
testcase_13 AC 61 ms
68,936 KB
testcase_14 AC 53 ms
63,592 KB
testcase_15 AC 41 ms
57,752 KB
testcase_16 AC 43 ms
57,328 KB
testcase_17 AC 43 ms
57,768 KB
testcase_18 AC 42 ms
58,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

w = int(input())
h = int(input())
n = int(input())
skn = [None] * n
for i in range(n):
    skn[i] = list(map(int, input().split(' ')))


hc = [False] * h
wc = [False] * w
for sk in skn:
    wc[sk[0] - 1] = True
    hc[sk[1] - 1] = True


hcount = hc.count(True)
wcount = wc.count(True)

result = hcount * w + wcount * h - hcount * wcount - n
print(result)

0