結果
| 問題 | No.586 ダブルブッキング |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2019-08-29 22:00:01 |
| 言語 | C++14 (gcc 15.2.0 + boost 1.89.0) |
| 結果 |
AC
|
| 実行時間 | 1 ms / 2,000 ms |
| コード長 | 530 bytes |
| 記録 | |
| コンパイル時間 | 1,265 ms |
| コンパイル使用メモリ | 190,112 KB |
| 実行使用メモリ | 6,400 KB |
| 最終ジャッジ日時 | 2026-05-12 11:51:29 |
| 合計ジャッジ時間 | 1,870 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge1_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 5 |
ソースコード
/**
@file 586.cpp
@title No.586 ダブルブッキング - yukicoder
@url https://yukicoder.me/problems/no/586
**/
#include <bits/stdc++.h>
using namespace std;
typedef long long LL;
#define ALL(obj) (obj).begin(), (obj).end()
#define REP(i, N) for (int i = 0; i < (N); ++i)
int main() {
int P1, P2, N;
cin >> P1;
cin >> P2;
cin >> N;
vector<int> R(N, 0);
REP(i, N) {
cin >> R[i];
}
sort(ALL(R));
R.erase(unique(ALL(R)), R.end());
cout << (P1 + P2) * (N - (int)R.size()) << endl;
return 0;
}