結果

問題 No.11 カードマッチ
ユーザー titiatitia
提出日時 2021-11-02 03:57:38
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 94 ms / 5,000 ms
コード長 225 bytes
コンパイル時間 87 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 26,368 KB
最終ジャッジ日時 2024-10-11 01:08:21
合計ジャッジ時間 2,315 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 32 ms
10,624 KB
testcase_03 AC 32 ms
10,752 KB
testcase_04 AC 56 ms
17,280 KB
testcase_05 AC 30 ms
10,624 KB
testcase_06 AC 81 ms
26,240 KB
testcase_07 AC 49 ms
15,872 KB
testcase_08 AC 57 ms
18,688 KB
testcase_09 AC 94 ms
26,368 KB
testcase_10 AC 73 ms
23,248 KB
testcase_11 AC 69 ms
21,888 KB
testcase_12 AC 70 ms
22,272 KB
testcase_13 AC 67 ms
21,584 KB
testcase_14 AC 51 ms
16,512 KB
testcase_15 AC 31 ms
10,752 KB
testcase_16 AC 32 ms
11,136 KB
testcase_17 AC 33 ms
11,264 KB
testcase_18 AC 33 ms
11,136 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

W=int(input())
H=int(input())
N=int(input())

M=[0]*W
M2=[0]*H

for i in range(N):
    s,k=map(int,input().split())
    s-=1
    k-=1
    M[s]=1
    M2[k]=1


m=M.count(1)
m2=M2.count(1)

ANS=m*H+m2*W-m*m2-N

print(ANS)
    
0