結果

問題 No.11 カードマッチ
ユーザー human_cipherhuman_cipher
提出日時 2021-06-20 22:41:43
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 591 bytes
コンパイル時間 208 ms
コンパイル使用メモリ 12,928 KB
実行使用メモリ 26,496 KB
最終ジャッジ日時 2024-06-22 22:41:36
合計ジャッジ時間 3,609 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,752 KB
testcase_01 AC 33 ms
10,880 KB
testcase_02 AC 30 ms
10,880 KB
testcase_03 AC 29 ms
10,880 KB
testcase_04 AC 162 ms
17,664 KB
testcase_05 AC 28 ms
10,752 KB
testcase_06 WA -
testcase_07 AC 142 ms
16,384 KB
testcase_08 WA -
testcase_09 AC 358 ms
26,496 KB
testcase_10 AC 279 ms
23,552 KB
testcase_11 AC 267 ms
22,272 KB
testcase_12 AC 263 ms
22,784 KB
testcase_13 AC 247 ms
21,888 KB
testcase_14 AC 156 ms
16,896 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

w = int(input())
h = int(input())
n = int(input())
SK = set([tuple(map(int,input().split())) for _ in range(n)])

Mark = [0 for _ in range(w+1)]
Num = [0 for _ in range(h+1)]

for s,k in SK:
    Mark[s] += 1
    Num[k] += 1

ans = 0
for i in range(w+1):
    if Mark[i] > 0:
        ans += (h-Mark[i])
for i in range(h+1):
    if Num[i] > 0:
        ans += (w-Num[i])

col = 0
for s0,k0 in SK:
    for s1,k1 in SK:
        if s0 != s1 and k0 != k1:
            if (s0,k1) not in SK:
                col += 1
            if (s1,k0) not in SK:
                col += 1
ans -= col//2
print(ans)
0