結果

問題 No.586 ダブルブッキング
ユーザー Project2017C2Project2017C2
提出日時 2017-11-10 17:09:44
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 527 bytes
コンパイル時間 1,597 ms
コンパイル使用メモリ 164,880 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-05-03 12:10:53
合計ジャッジ時間 2,079 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;
typedef long long ll;
typedef vector<int> vi;

const int dx[4] ={1,0,-1,0};
const int dy[4] ={0,1,0,-1};

#define Endl endl
#define INF 99999999
#define all(v) v.begin(),v.end()
#define pb push_back
#define mp make_pair
#define rep(i,n) for(int i= 0;i<n;i++)

int main(){

	int p1,p2,n,r;
	ll ans = 0;
	bool j[100];

	cin >> p1 >>p2;
	cin >> n;

	rep(i,n){
		cin >>r;
		if(j[r] == false){
			j[r] = true;
		}
		else{
			ans += p1+p2;
		}
	}

	cout << ans <<Endl;

	return 0;

}


0