結果

問題 No.11 カードマッチ
ユーザー こるこる
提出日時 2017-01-07 11:20:57
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 122 ms / 5,000 ms
コード長 327 bytes
コンパイル時間 271 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 26,496 KB
最終ジャッジ日時 2024-05-09 21:25:49
合計ジャッジ時間 2,146 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,752 KB
testcase_01 AC 24 ms
10,624 KB
testcase_02 AC 25 ms
10,624 KB
testcase_03 AC 24 ms
10,624 KB
testcase_04 AC 59 ms
17,536 KB
testcase_05 AC 24 ms
10,624 KB
testcase_06 AC 114 ms
26,496 KB
testcase_07 AC 64 ms
16,128 KB
testcase_08 AC 70 ms
18,944 KB
testcase_09 AC 122 ms
26,368 KB
testcase_10 AC 107 ms
23,296 KB
testcase_11 AC 99 ms
21,888 KB
testcase_12 AC 98 ms
22,528 KB
testcase_13 AC 91 ms
21,632 KB
testcase_14 AC 68 ms
16,768 KB
testcase_15 AC 30 ms
10,624 KB
testcase_16 AC 34 ms
11,136 KB
testcase_17 AC 33 ms
11,392 KB
testcase_18 AC 31 ms
11,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

w=int(input())
h=int(input())
n=int(input())

w_array=[0 for i in range(w+1)]
h_array=[0 for i in range(h+1)]
w_w=0
h_h=0
for j in range(n):
    a,b=[int(i) for i in input().split()]
    if w_array[a]==0:
        w_w+=1
        w_array[a]=1
    if h_array[b]==0:
        h_h+=1
        h_array[b]=1
print(h*w_w+w*h_h-w_w*h_h-n)
0