結果
| 問題 | No.11 カードマッチ |
| コンテスト | |
| ユーザー |
Konton7
|
| 提出日時 | 2019-05-16 00:26:20 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
AC
|
| 実行時間 | 95 ms / 5,000 ms |
| コード長 | 294 bytes |
| 記録 | |
| コンパイル時間 | 682 ms |
| コンパイル使用メモリ | 20,700 KB |
| 実行使用メモリ | 15,232 KB |
| 最終ジャッジ日時 | 2026-04-04 14:11:55 |
| 合計ジャッジ時間 | 2,792 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 19 |
ソースコード
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-lw)-n)
Konton7