結果

問題 No.586 ダブルブッキング
ユーザー ABKZABKZ
提出日時 2021-07-20 13:45:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 46 ms / 2,000 ms
コード長 211 bytes
コンパイル時間 227 ms
コンパイル使用メモリ 82,520 KB
実行使用メモリ 55,432 KB
最終ジャッジ日時 2024-07-17 13:41:32
合計ジャッジ時間 1,386 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
55,432 KB
testcase_01 AC 42 ms
53,356 KB
testcase_02 AC 42 ms
53,844 KB
testcase_03 AC 46 ms
55,396 KB
testcase_04 AC 42 ms
55,180 KB
testcase_05 AC 43 ms
54,484 KB
testcase_06 AC 42 ms
54,176 KB
testcase_07 AC 42 ms
54,404 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections

P1 = int(input())
P2 = int(input())
N = int(input())
R = [input() for _ in range(N)]

ans = 0
for _, cnt in collections.Counter(R).most_common():
    ans += (P1 + P2) * (cnt - 1)

print(ans)
0