結果
問題 | No.586 ダブルブッキング |
ユーザー | ut0s |
提出日時 | 2019-08-29 22:00:01 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.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 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,248 KB |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 1 ms
5,248 KB |
testcase_05 | AC | 1 ms
5,248 KB |
testcase_06 | AC | 1 ms
5,248 KB |
testcase_07 | AC | 1 ms
5,248 KB |
ソースコード
/** @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; }