結果

問題 No.11 カードマッチ
ユーザー KudeKude
提出日時 2020-09-03 09:09:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 80 ms / 5,000 ms
コード長 269 bytes
コンパイル時間 273 ms
コンパイル使用メモリ 82,816 KB
実行使用メモリ 73,344 KB
最終ジャッジ日時 2024-11-22 20:14:38
合計ジャッジ時間 2,258 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,712 KB
testcase_01 AC 40 ms
51,712 KB
testcase_02 AC 41 ms
51,328 KB
testcase_03 AC 41 ms
51,968 KB
testcase_04 AC 59 ms
63,744 KB
testcase_05 AC 41 ms
51,712 KB
testcase_06 AC 80 ms
73,344 KB
testcase_07 AC 63 ms
62,208 KB
testcase_08 AC 63 ms
65,536 KB
testcase_09 AC 79 ms
72,576 KB
testcase_10 AC 72 ms
69,632 KB
testcase_11 AC 70 ms
68,224 KB
testcase_12 AC 71 ms
68,864 KB
testcase_13 AC 68 ms
68,352 KB
testcase_14 AC 57 ms
62,848 KB
testcase_15 AC 45 ms
56,960 KB
testcase_16 AC 47 ms
57,856 KB
testcase_17 AC 47 ms
58,240 KB
testcase_18 AC 46 ms
57,600 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

w = int(input())
h = int(input())
n = int(input())
havew = [False] * w
haveh = [False] * h
for _ in range(n):
    s, k = map(int, input().split())
    havew[s-1] = True
    haveh[k-1] = True
sw = sum(havew)
sh = sum(haveh)
ans = sw * h + sh * w - sw * sh - n
print(ans)
0