結果
| 問題 |
No.586 ダブルブッキング
|
| コンテスト | |
| ユーザー |
cureskol
|
| 提出日時 | 2020-03-31 16:27:58 |
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
| 結果 |
AC
|
| 実行時間 | 3 ms / 2,000 ms |
| コード長 | 233 bytes |
| コンパイル時間 | 1,781 ms |
| コンパイル使用メモリ | 172,628 KB |
| 実行使用メモリ | 5,376 KB |
| 最終ジャッジ日時 | 2024-06-24 19:47:34 |
| 合計ジャッジ時間 | 2,292 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 5 |
ソースコード
#include <bits/stdc++.h>
using namespace std;
signed main(){
int p1,p2,n;cin>>p1>>p2>>n;
map<int,int> m;
while(n--){
int a;cin>>a;m[a]++;
}
int ans=0;
for(auto p:m)ans+=p.second-1;
ans*=p1+p2;
cout<<ans<<endl;
}
cureskol