結果

問題 No.11 カードマッチ
ユーザー JunOnumaJunOnuma
提出日時 2017-06-14 13:55:25
言語 Python2
(2.7.18)
結果
AC  
実行時間 248 ms / 5,000 ms
コード長 299 bytes
コンパイル時間 574 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 61,284 KB
最終ジャッジ日時 2024-09-24 20:26:03
合計ジャッジ時間 2,693 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
6,812 KB
testcase_01 AC 10 ms
6,944 KB
testcase_02 AC 10 ms
6,944 KB
testcase_03 AC 10 ms
6,944 KB
testcase_04 AC 113 ms
35,776 KB
testcase_05 AC 11 ms
6,944 KB
testcase_06 AC 243 ms
61,284 KB
testcase_07 AC 95 ms
32,580 KB
testcase_08 AC 132 ms
36,408 KB
testcase_09 AC 248 ms
61,236 KB
testcase_10 AC 199 ms
52,252 KB
testcase_11 AC 178 ms
44,476 KB
testcase_12 AC 192 ms
52,708 KB
testcase_13 AC 176 ms
49,820 KB
testcase_14 AC 101 ms
27,608 KB
testcase_15 AC 11 ms
6,940 KB
testcase_16 AC 19 ms
9,088 KB
testcase_17 AC 21 ms
9,344 KB
testcase_18 AC 21 ms
9,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

w = int(raw_input())
lw = [False for _ in range(w)]
h = int(raw_input())
lh = [False for _ in range(h)]
n = int(raw_input())
c = 0
for _ in range(n):
    s,k = map(int, raw_input().split())
    lw[s-1] = True
    lh[k-1] = True
wt = lw.count(True)
ht = lh.count(True)
print wt * h - n + (w-wt) * ht
0