結果

問題 No.586 ダブルブッキング
ユーザー ibuki2003ibuki2003
提出日時 2017-11-04 17:13:29
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 642 bytes
コンパイル時間 1,693 ms
コンパイル使用メモリ 171,392 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-05-02 22:45:24
合計ジャッジ時間 1,805 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,940 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

#define REP(i, n) for(int i=0, i##_len=(n); i<i##_len; ++i)
#define REPR(i, n) for(int i = n;i >= 0;i--)
#define REP3(i, m, n) for(int i = m, i##_len=(n);i < i##_len;i++)
#define FORVEC(i, v) for(int i = 0;i < v.size();i++)

#define INF 1000000000
#define pb(a) push_back(a)
#define llong long long
#define vi vector<int>
#define P pair<int,int>
#define all(vec) (vec.begin(),vec.end())

int main(){
	int P1,P2,N,buf;
	int ans=0;
	set<int> se;
	cin>>P1>>P2>>N;
	REP(i,N){
		cin>>buf;
		if(se.find(buf)!=se.end()){
			ans+=P1+P2;
		}else{
			se.insert(buf);
		}
	}
	cout<<ans<<endl;
	return 0;
}
0