結果

問題 No.11 カードマッチ
ユーザー kohei2019kohei2019
提出日時 2021-02-03 09:44:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 70 ms / 5,000 ms
コード長 312 bytes
コンパイル時間 243 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 72,704 KB
最終ジャッジ日時 2024-06-30 00:13:05
合計ジャッジ時間 2,065 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
52,096 KB
testcase_01 AC 36 ms
51,968 KB
testcase_02 AC 37 ms
52,224 KB
testcase_03 AC 35 ms
51,968 KB
testcase_04 AC 53 ms
63,744 KB
testcase_05 AC 34 ms
51,584 KB
testcase_06 AC 69 ms
72,576 KB
testcase_07 AC 48 ms
62,208 KB
testcase_08 AC 53 ms
65,280 KB
testcase_09 AC 70 ms
72,704 KB
testcase_10 AC 61 ms
69,632 KB
testcase_11 AC 59 ms
68,096 KB
testcase_12 AC 59 ms
68,736 KB
testcase_13 AC 58 ms
67,840 KB
testcase_14 AC 48 ms
63,104 KB
testcase_15 AC 35 ms
57,472 KB
testcase_16 AC 37 ms
57,984 KB
testcase_17 AC 41 ms
57,984 KB
testcase_18 AC 40 ms
57,600 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

W = int(input())
H = int(input())
N = int(input())
lssk = [list(map(int,input().split())) for i in range(N)]
lsW = [False]*(W+1)
lsH = [False]*(H+1)
for i in range(N):
    w,h = lssk[i][0],lssk[i][1]
    lsW[w] = True
    lsH[h] = True
print(lsW.count(True)*H+lsH.count(True)*W-lsW.count(True)*lsH.count(True)-N)
0