結果

問題 No.11 カードマッチ
ユーザー taisuketaisuke
提出日時 2023-02-22 14:33:24
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 143 ms / 5,000 ms
コード長 351 bytes
コンパイル時間 220 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 26,496 KB
最終ジャッジ日時 2024-07-22 16:35:44
合計ジャッジ時間 2,066 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,752 KB
testcase_01 AC 24 ms
10,624 KB
testcase_02 AC 26 ms
10,624 KB
testcase_03 AC 27 ms
10,624 KB
testcase_04 AC 75 ms
17,536 KB
testcase_05 AC 27 ms
10,624 KB
testcase_06 AC 143 ms
26,368 KB
testcase_07 AC 65 ms
16,000 KB
testcase_08 AC 84 ms
18,816 KB
testcase_09 AC 140 ms
26,496 KB
testcase_10 AC 117 ms
23,424 KB
testcase_11 AC 106 ms
22,144 KB
testcase_12 AC 109 ms
22,656 KB
testcase_13 AC 104 ms
21,760 KB
testcase_14 AC 68 ms
16,512 KB
testcase_15 AC 25 ms
10,624 KB
testcase_16 AC 29 ms
11,136 KB
testcase_17 AC 31 ms
11,392 KB
testcase_18 AC 30 ms
11,264 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
w = int(input())
h = int(input())
n = int(input())
a = [[*map(int, input().split())] for _ in range(n)]

mark = [0 for i in range(w)]
num = [0 for i in range(h)]
for x in a:
    mark[x[0] - 1] = 1
    num[x[1] - 1] = 1
cnt1 = mark.count(1)
cnt2 = num.count(1)
ans = cnt1 * h + cnt2 * w - cnt1*cnt2 - n
print(ans)
0