結果

問題 No.586 ダブルブッキング
ユーザー ut0sut0s
提出日時 2019-08-29 22:00:01
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 3 ms / 2,000 ms
コード長 530 bytes
コンパイル時間 1,709 ms
コンパイル使用メモリ 171,316 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-28 21:17:47
合計ジャッジ時間 2,319 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

/**
  @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;
}
0