結果

問題 No.11 カードマッチ
ユーザー gorugo30gorugo30
提出日時 2021-02-25 21:51:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 54 ms / 5,000 ms
コード長 729 bytes
コンパイル時間 424 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 78,464 KB
最終ジャッジ日時 2024-10-01 13:04:56
合計ジャッジ時間 1,808 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,712 KB
testcase_01 AC 37 ms
51,712 KB
testcase_02 AC 38 ms
51,840 KB
testcase_03 AC 39 ms
52,096 KB
testcase_04 AC 50 ms
67,968 KB
testcase_05 AC 37 ms
51,712 KB
testcase_06 AC 53 ms
75,392 KB
testcase_07 AC 51 ms
67,712 KB
testcase_08 AC 51 ms
70,528 KB
testcase_09 AC 54 ms
78,464 KB
testcase_10 AC 53 ms
73,344 KB
testcase_11 AC 52 ms
72,576 KB
testcase_12 AC 53 ms
73,088 KB
testcase_13 AC 51 ms
72,192 KB
testcase_14 AC 53 ms
67,712 KB
testcase_15 AC 50 ms
63,360 KB
testcase_16 AC 47 ms
63,360 KB
testcase_17 AC 47 ms
63,360 KB
testcase_18 AC 47 ms
63,104 KB
権限があれば一括ダウンロードができます

ソースコード

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
            hset.add((mi, nj))
        if (mj, ni) not in hset:
            ans -= 1
            hset.add((mj, ni))
print(ans)
0