結果

問題 No.11 カードマッチ
ユーザー zimphazimpha
提出日時 2017-12-07 02:46:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 37 ms / 5,000 ms
コード長 196 bytes
コンパイル時間 166 ms
コンパイル使用メモリ 82,448 KB
実行使用メモリ 53,760 KB
最終ジャッジ日時 2024-05-06 17:32:22
合計ジャッジ時間 1,650 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,076 KB
testcase_01 AC 34 ms
52,348 KB
testcase_02 AC 36 ms
52,504 KB
testcase_03 AC 34 ms
52,176 KB
testcase_04 AC 35 ms
53,112 KB
testcase_05 AC 36 ms
53,228 KB
testcase_06 AC 36 ms
52,936 KB
testcase_07 AC 35 ms
52,612 KB
testcase_08 AC 35 ms
53,148 KB
testcase_09 AC 36 ms
52,424 KB
testcase_10 AC 35 ms
53,012 KB
testcase_11 AC 36 ms
53,424 KB
testcase_12 AC 36 ms
52,696 KB
testcase_13 AC 36 ms
52,816 KB
testcase_14 AC 37 ms
53,432 KB
testcase_15 AC 36 ms
53,156 KB
testcase_16 AC 36 ms
53,760 KB
testcase_17 AC 35 ms
52,536 KB
testcase_18 AC 35 ms
53,464 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