結果
| 問題 | No.11 カードマッチ |
| コンテスト | |
| ユーザー |
Konton7
|
| 提出日時 | 2019-05-16 00:26:20 |
| 言語 | Python3 (3.14.7 + numpy 2.5.2 + scipy 1.18.0) |
| 結果 |
AC
|
| 実行時間 | 94 ms / 5,000 ms |
| + 357µs | |
| コード長 | 294 bytes |
| 記録 | |
| コンパイル時間 | 284 ms |
| コンパイル使用メモリ | 21,284 KB |
| 実行使用メモリ | 15,744 KB |
| 最終ジャッジ日時 | 2026-08-27 08:22:55 |
| 合計ジャッジ時間 | 3,539 ms |
|
ジャッジサーバーID (参考情報) |
judge3_1 / judge2_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