結果

問題 No.11 カードマッチ
ユーザー zimphazimpha
提出日時 2017-12-07 02:46:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 42 ms / 5,000 ms
コード長 196 bytes
コンパイル時間 155 ms
コンパイル使用メモリ 82,168 KB
実行使用メモリ 53,652 KB
最終ジャッジ日時 2024-11-29 01:47:39
合計ジャッジ時間 1,797 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
52,688 KB
testcase_01 AC 40 ms
52,148 KB
testcase_02 AC 37 ms
52,432 KB
testcase_03 AC 39 ms
52,672 KB
testcase_04 AC 39 ms
52,608 KB
testcase_05 AC 39 ms
52,704 KB
testcase_06 AC 38 ms
52,696 KB
testcase_07 AC 39 ms
53,652 KB
testcase_08 AC 39 ms
52,144 KB
testcase_09 AC 40 ms
53,404 KB
testcase_10 AC 39 ms
52,360 KB
testcase_11 AC 39 ms
52,916 KB
testcase_12 AC 40 ms
52,344 KB
testcase_13 AC 41 ms
52,704 KB
testcase_14 AC 39 ms
52,564 KB
testcase_15 AC 39 ms
52,132 KB
testcase_16 AC 39 ms
52,020 KB
testcase_17 AC 39 ms
52,240 KB
testcase_18 AC 40 ms
53,072 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

X = set()
Y = set()
for i in range(n):
    x, y = input().split()
    X.add(x)
    Y.add(y)
print(h * len(X) + w * len(Y) - n - len(X) * len(Y))
0