結果
| 問題 | No.586 ダブルブッキング |
| コンテスト | |
| ユーザー |
HAGI_TARO
|
| 提出日時 | 2021-09-28 08:58:50 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
AC
|
| 実行時間 | 62 ms / 2,000 ms |
| + 391µs | |
| コード長 | 149 bytes |
| 記録 | |
| コンパイル時間 | 233 ms |
| コンパイル使用メモリ | 95,980 KB |
| 実行使用メモリ | 78,976 KB |
| 最終ジャッジ日時 | 2026-08-11 05:05:13 |
| 合計ジャッジ時間 | 2,364 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 5 |
ソースコード
P1 = int(input()) P2 = int(input()) n = int(input()) R = [int(input()) for _ in range(n)] R_set = list(set(R)) print((P1+P2) * (len(R) - len(R_set)))
HAGI_TARO