結果
| 問題 | No.586 ダブルブッキング | 
| コンテスト | |
| ユーザー |  | 
| 提出日時 | 2019-08-29 22:00:01 | 
| 言語 | C++14 (gcc 13.3.0 + boost 1.87.0) | 
| 結果 | 
                                AC
                                 
                             | 
| 実行時間 | 2 ms / 2,000 ms | 
| コード長 | 530 bytes | 
| コンパイル時間 | 1,749 ms | 
| コンパイル使用メモリ | 171,452 KB | 
| 実行使用メモリ | 5,248 KB | 
| 最終ジャッジ日時 | 2024-11-17 17:16:56 | 
| 合計ジャッジ時間 | 1,843 ms | 
| ジャッジサーバーID (参考情報) | judge2 / judge5 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| 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;
}
            
            
            
        