結果

問題 No.586 ダブルブッキング
ユーザー pypypymipypypymi
提出日時 2022-02-17 12:50:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 38 ms / 2,000 ms
コード長 218 bytes
コンパイル時間 126 ms
コンパイル使用メモリ 82,568 KB
実行使用メモリ 53,760 KB
最終ジャッジ日時 2024-06-29 07:38:23
合計ジャッジ時間 983 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,504 KB
testcase_01 AC 38 ms
53,376 KB
testcase_02 AC 36 ms
53,248 KB
testcase_03 AC 36 ms
53,632 KB
testcase_04 AC 36 ms
53,248 KB
testcase_05 AC 36 ms
53,632 KB
testcase_06 AC 35 ms
53,504 KB
testcase_07 AC 35 ms
53,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

p1 = int(input())
p2 = int(input())
n = int(input())
r = [int(input()) for i in range(n)]
from collections import Counter
a = list(Counter(r).values())
a_c = [1]*len(a)
print(sum([(p1+p2)*(i-j) for i,j in zip(a,a_c)]))
0