結果
問題 | No.586 ダブルブッキング |
ユーザー | ミドリムシ |
提出日時 | 2017-11-03 22:24:10 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 548 bytes |
コンパイル時間 | 714 ms |
コンパイル使用メモリ | 59,864 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-05-02 05:01:18 |
合計ジャッジ時間 | 938 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | AC | 1 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | AC | 1 ms
5,376 KB |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
ソースコード
#include <iostream> #include <vector> using namespace std; int main(){ int P1, P2, N; cin >> P1 >> P2 >> N; vector<int> bookings; for(int i = 0; i < N; i++){ int booking; cin >> booking; bool if_ok = true; for(int j = 0; j < bookings.size(); j++){ if(bookings[j] == booking){ if_ok = false; break; } } if(if_ok){ bookings.push_back(booking); } } cout << (N - bookings.size()) * (P1 + P2) << endl; }