結果

問題 No.11 カードマッチ
ユーザー Navier_BoltzmannNavier_Boltzmann
提出日時 2023-06-07 21:51:44
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 48 ms / 5,000 ms
コード長 372 bytes
コンパイル時間 321 ms
コンパイル使用メモリ 82,408 KB
実行使用メモリ 57,316 KB
最終ジャッジ日時 2024-06-09 13:54:29
合計ジャッジ時間 2,115 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 48 ms
56,572 KB
testcase_01 AC 47 ms
56,836 KB
testcase_02 AC 46 ms
56,588 KB
testcase_03 AC 45 ms
56,004 KB
testcase_04 AC 45 ms
55,436 KB
testcase_05 AC 45 ms
55,844 KB
testcase_06 AC 45 ms
57,256 KB
testcase_07 AC 44 ms
56,680 KB
testcase_08 AC 45 ms
56,944 KB
testcase_09 AC 45 ms
56,476 KB
testcase_10 AC 46 ms
55,692 KB
testcase_11 AC 45 ms
57,192 KB
testcase_12 AC 45 ms
56,168 KB
testcase_13 AC 44 ms
56,620 KB
testcase_14 AC 43 ms
56,456 KB
testcase_15 AC 44 ms
55,968 KB
testcase_16 AC 44 ms
56,180 KB
testcase_17 AC 44 ms
57,316 KB
testcase_18 AC 45 ms
56,604 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *
from itertools import *
from functools import *
from heapq import *
import sys,math
input = sys.stdin.readline

W = int(input())
H = int(input())
N = int(input())
SK = [tuple(map(int,input().split())) for _ in range(N)]
s = Counter([s for s,k in SK])
k = Counter([k for s,k in SK])
ans = H*W - (W-len(s.values()))*(H-len(k.values()))-N
print(ans)
0