結果
問題 | No.586 ダブルブッキング |
ユーザー | Takeno_hito |
提出日時 | 2017-11-04 17:19:25 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 672 bytes |
コンパイル時間 | 825 ms |
コンパイル使用メモリ | 82,852 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-05-02 22:46:11 |
合計ジャッジ時間 | 1,378 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | 2 ms
5,376 KB |
ソースコード
#include <iostream> #include <vector> #include <algorithm> #include <map> #include <queue> #include <string> #include <set> #define INF 100000000000 using namespace std; #define FOR(i,a,b) for(int i=a;i<b;i++) #define LOOP(i,N) for(int i=0;i<N;i++) typedef pair<int,int> P; typedef pair<int,pair<int,int> > PP; // #define int long long /* define/include */ int main(){ //まっぷ に つっこんで えい!w map<int,int> ma; int p1,p2; cin >> p1; cin >> p2; int p=p1+p2; int n; cin >> n; for(int i=0;i<n;i++){ int r; cin >> r; ma[r]++; } int ans=0; for(auto itr:ma){ ans+=itr.second-1; } cout << ans*p << endl; }