結果

問題 No.11 カードマッチ
ユーザー gorugo30gorugo30
提出日時 2021-02-25 21:49:28
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 667 bytes
コンパイル時間 256 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 76,288 KB
最終ジャッジ日時 2024-10-01 13:03:59
合計ジャッジ時間 1,882 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
51,712 KB
testcase_01 AC 33 ms
52,096 KB
testcase_02 AC 33 ms
51,584 KB
testcase_03 AC 35 ms
51,712 KB
testcase_04 AC 47 ms
65,664 KB
testcase_05 AC 33 ms
51,584 KB
testcase_06 WA -
testcase_07 AC 47 ms
64,896 KB
testcase_08 WA -
testcase_09 AC 62 ms
75,136 KB
testcase_10 AC 56 ms
71,552 KB
testcase_11 AC 54 ms
70,400 KB
testcase_12 AC 50 ms
71,168 KB
testcase_13 AC 50 ms
70,016 KB
testcase_14 AC 47 ms
65,664 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

W = int(input())
H = int(input())
N = int(input())
hand = [tuple(map(int, input().split())) for i in range(N)]
hset = set(hand)
cntmark = [H] * (W + 1)
cntmark[0] = 0
cntnum = [W] * (H + 1)
cntnum[0] = 0
for m, n in hand:
    cntmark[m] -= 1
    cntnum[n] -= 1
ans = 0
donem = set()
donen = set()
for m, n in hand:
    if m not in donem:
        ans += cntmark[m]
        donem.add(m)
    if n not in donen:
        ans += cntnum[n]
        donen.add(n)
for i in range(N):
    mi, ni = hand[i]
    for j in range(i + 1, N):
        mj, nj = hand[j]
        if (mi, nj) not in hset:
            ans -= 1
        if (mj, ni) not in hset:
            ans -= 1
print(ans)
0