結果

問題 No.11 カードマッチ
ユーザー Konton7
提出日時 2019-05-16 00:19:44
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 294 bytes
コンパイル時間 581 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-09-14 17:59:45
合計ジャッジ時間 1,743 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 12 WA * 7
権限があれば一括ダウンロードができます

ソースコード

diff #

w = int(input())
h = int(input())
n = int(input())

wlist = []
hlist = []

for i in range(n):
    a, b = [ int(v) for v in input().split() ]
    if a not in wlist:
        wlist.append(a)
    if b not in hlist:
        hlist.append(b)


lw = len(wlist)
lh = len(hlist)

print(lw*h+lh*(w-lh)-n)
0