結果
問題 | No.586 ダブルブッキング |
ユーザー | hanorver |
提出日時 | 2017-11-25 11:18:51 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 521 bytes |
コンパイル時間 | 767 ms |
コンパイル使用メモリ | 88,256 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-05-05 12:29:02 |
合計ジャッジ時間 | 1,320 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | 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 <string> #include <vector> #include <algorithm> #include <map> #include <stack> #include <cmath> #include <queue> #include <numeric> int main() { long long p1, p2; long long n; std::map<long long, long long> r; std::cin >> p1 >> p2 >> n; for (size_t i = 0; i < n; i++) { int room; std::cin >> room; r[room]++; } long long count = 0; for (auto i = r.begin(); i != r.end(); i++) { count += i->second - 1; } std::cout << count * (p1 + p2) << std::endl; return 0; }