結果

問題 No.11 カードマッチ
ユーザー あかりきあかりき
提出日時 2021-02-08 09:45:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 46 ms / 5,000 ms
コード長 445 bytes
コンパイル時間 168 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 62,464 KB
最終ジャッジ日時 2024-07-05 06:04:08
合計ジャッジ時間 1,915 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,504 KB
testcase_01 AC 37 ms
53,504 KB
testcase_02 AC 37 ms
53,760 KB
testcase_03 AC 36 ms
53,376 KB
testcase_04 AC 43 ms
61,184 KB
testcase_05 AC 37 ms
53,504 KB
testcase_06 AC 39 ms
54,272 KB
testcase_07 AC 45 ms
62,336 KB
testcase_08 AC 45 ms
62,464 KB
testcase_09 AC 44 ms
62,208 KB
testcase_10 AC 46 ms
60,928 KB
testcase_11 AC 43 ms
61,312 KB
testcase_12 AC 44 ms
61,568 KB
testcase_13 AC 44 ms
61,184 KB
testcase_14 AC 44 ms
61,568 KB
testcase_15 AC 45 ms
62,208 KB
testcase_16 AC 46 ms
62,336 KB
testcase_17 AC 45 ms
62,336 KB
testcase_18 AC 46 ms
62,336 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict
w=int(input())
h=int(input())
n=int(input())
l=[list(map(int,input().split())) for i in range(n)]
d=defaultdict(int)
for i in range(n):
  d[l[i][0]*10**8+l[i][1]]=1
L1=set()
L2=set()
for i in range(n):
  L1.add(l[i][0])
  L2.add(l[i][1])
L1=list(L1)
L2=list(L2)
ans=len(L1)*h+len(L2)*w-len(L1)*len(L2)
for i in range(len(L1)):
  for j in range(len(L2)):
    if d[L1[i]*10**8+L2[j]]==1:
      ans-=1
print(ans)
0