結果

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

ソースコード

diff #

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-lw)-n)
0