結果

問題 No.11 カードマッチ
ユーザー ntudantuda
提出日時 2023-12-27 22:29:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 40 ms / 5,000 ms
コード長 249 bytes
コンパイル時間 328 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 54,500 KB
最終ジャッジ日時 2024-09-27 15:35:43
合計ジャッジ時間 1,921 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,068 KB
testcase_01 AC 36 ms
52,964 KB
testcase_02 AC 36 ms
53,220 KB
testcase_03 AC 36 ms
52,648 KB
testcase_04 AC 37 ms
52,916 KB
testcase_05 AC 36 ms
52,688 KB
testcase_06 AC 40 ms
54,140 KB
testcase_07 AC 36 ms
52,932 KB
testcase_08 AC 39 ms
52,928 KB
testcase_09 AC 37 ms
53,240 KB
testcase_10 AC 35 ms
53,420 KB
testcase_11 AC 37 ms
52,516 KB
testcase_12 AC 36 ms
52,816 KB
testcase_13 AC 35 ms
52,492 KB
testcase_14 AC 36 ms
52,804 KB
testcase_15 AC 37 ms
52,712 KB
testcase_16 AC 36 ms
53,040 KB
testcase_17 AC 38 ms
54,500 KB
testcase_18 AC 37 ms
52,500 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

W = int(input())
H = int(input())
N = int(input())
SK = [list(map(int,input().split())) for _ in range(N)]
SS = set()
KS = set()
for s,k in SK:
    SS.add(s)
    KS.add(k)
NS = len(SS)
NK = len(KS)
ans = NS * H + NK * W - NS * NK - N
print(ans)




0