結果
| 問題 | No.586 ダブルブッキング |
| コンテスト | |
| ユーザー |
HAGI_TARO
|
| 提出日時 | 2021-09-28 08:58:50 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
AC
|
| 実行時間 | 26 ms / 2,000 ms |
| コード長 | 149 bytes |
| 記録 | |
| コンパイル時間 | 194 ms |
| コンパイル使用メモリ | 85,472 KB |
| 実行使用メモリ | 52,096 KB |
| 最終ジャッジ日時 | 2026-03-29 02:17:41 |
| 合計ジャッジ時間 | 957 ms |
|
ジャッジサーバーID (参考情報) |
judge3_1 / judge1_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