結果
問題 | No.11 カードマッチ |
ユーザー | human_cipher |
提出日時 | 2021-06-20 22:58:53 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
AC
|
実行時間 | 333 ms / 5,000 ms |
コード長 | 780 bytes |
コンパイル時間 | 269 ms |
コンパイル使用メモリ | 12,800 KB |
実行使用メモリ | 27,648 KB |
最終ジャッジ日時 | 2024-06-22 22:43:08 |
合計ジャッジ時間 | 4,162 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 25 ms
10,880 KB |
testcase_01 | AC | 25 ms
11,008 KB |
testcase_02 | AC | 25 ms
10,752 KB |
testcase_03 | AC | 26 ms
10,752 KB |
testcase_04 | AC | 170 ms
17,920 KB |
testcase_05 | AC | 26 ms
10,880 KB |
testcase_06 | AC | 330 ms
26,752 KB |
testcase_07 | AC | 140 ms
17,280 KB |
testcase_08 | AC | 197 ms
20,096 KB |
testcase_09 | AC | 333 ms
27,648 KB |
testcase_10 | AC | 270 ms
23,808 KB |
testcase_11 | AC | 247 ms
22,784 KB |
testcase_12 | AC | 267 ms
23,808 KB |
testcase_13 | AC | 248 ms
22,912 KB |
testcase_14 | AC | 155 ms
17,792 KB |
testcase_15 | AC | 39 ms
11,904 KB |
testcase_16 | AC | 51 ms
12,544 KB |
testcase_17 | AC | 51 ms
12,672 KB |
testcase_18 | AC | 52 ms
12,544 KB |
ソースコード
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 Counted = set() for s0,k0 in SK: for s1,k1 in SK: if s0 != s1 and k0 != k1: if (s0,k1) not in SK: if (s0,k1) not in Counted: col += 1 Counted.add((s0,k1)) if (s1,k0) not in SK: if (s1,k0) not in Counted: col += 1 Counted.add((s1,k0)) ans -= col print(ans)