結果

問題 No.586 ダブルブッキング
ユーザー maspy
提出日時 2020-01-10 10:11:31
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 33 ms / 2,000 ms
コード長 308 bytes
コンパイル時間 87 ms
コンパイル使用メモリ 12,288 KB
実行使用メモリ 10,624 KB
最終ジャッジ日時 2024-11-23 21:41:35
合計ジャッジ時間 892 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 5
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines

from collections import Counter

p1,p2,n,*R = map(int,read().split())

p = p1 + p2

counter = Counter(R)

x = sum(x - 1 if x > 1 else 0 for x in counter.values())
answer = p * x
print(answer)
0