結果
| 問題 | No.586 ダブルブッキング | 
| コンテスト | |
| ユーザー |  nasubi24 | 
| 提出日時 | 2020-11-02 18:41:48 | 
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) | 
| 結果 | 
                                WA
                                 
                             | 
| 実行時間 | - | 
| コード長 | 128 bytes | 
| コンパイル時間 | 128 ms | 
| コンパイル使用メモリ | 12,288 KB | 
| 実行使用メモリ | 10,496 KB | 
| 最終ジャッジ日時 | 2024-07-22 06:36:22 | 
| 合計ジャッジ時間 | 888 ms | 
| ジャッジサーバーID (参考情報) | judge1 / judge5 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | WA * 3 | 
| other | AC * 1 WA * 4 | 
ソースコード
p1=int(input())
p2=int(input())
n=int(input())
a=set()
for i in range(n):
    a.add(int(input()))
    print((p1+p2)*(n-len(a)))
            
            
            
        