結果

問題 No.586 ダブルブッキング
ユーザー brthyyjpbrthyyjp
提出日時 2021-06-16 19:18:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 41 ms / 2,000 ms
コード長 180 bytes
コンパイル時間 268 ms
コンパイル使用メモリ 82,780 KB
実行使用メモリ 53,816 KB
最終ジャッジ日時 2024-06-09 23:32:43
合計ジャッジ時間 1,367 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,600 KB
testcase_01 AC 37 ms
52,888 KB
testcase_02 AC 41 ms
53,708 KB
testcase_03 AC 39 ms
52,372 KB
testcase_04 AC 37 ms
52,072 KB
testcase_05 AC 39 ms
53,172 KB
testcase_06 AC 41 ms
53,816 KB
testcase_07 AC 37 ms
53,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

p1 = int(input())
p2 = int(input())
n = int(input())
used = set()
ans = 0
for i in range(n):
    r = int(input())
    if r in used:
        ans += p1+p2
    used.add(r)
print(ans)
0