結果

問題 No.11 カードマッチ
ユーザー konchanksukonchanksu
提出日時 2020-04-20 14:47:26
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 595 ms / 5,000 ms
コード長 396 bytes
コンパイル時間 107 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 196,280 KB
最終ジャッジ日時 2024-10-06 08:51:21
合計ジャッジ時間 5,292 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 29 ms
10,496 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 282 ms
94,048 KB
testcase_05 AC 29 ms
10,752 KB
testcase_06 AC 595 ms
195,896 KB
testcase_07 AC 217 ms
53,476 KB
testcase_08 AC 338 ms
104,156 KB
testcase_09 AC 595 ms
196,280 KB
testcase_10 AC 489 ms
183,928 KB
testcase_11 AC 432 ms
154,280 KB
testcase_12 AC 457 ms
154,464 KB
testcase_13 AC 428 ms
149,980 KB
testcase_14 AC 245 ms
75,228 KB
testcase_15 AC 32 ms
11,264 KB
testcase_16 AC 52 ms
16,148 KB
testcase_17 AC 52 ms
15,956 KB
testcase_18 AC 52 ms
16,284 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

w = int(input())
h = int(input())
n = int(input())
s, k = {i:0 for i in range(1, w + 1)}, {i:0 for i in range(1, h + 1)}
for i in range(n):
    te, mp = map(int, input().split())
    s[te] += 1
    k[mp] += 1
    
ans = 0
tmp = 0
for i in range(1, w + 1):
    if s[i] != 0:
        ans += h - s[i]
        tmp += 1

for i in range(1, h + 1):
    if k[i] != 0:
        ans += w - tmp

print(ans)

0