結果
問題 | No.586 ダブルブッキング |
ユーザー | kazuki95810 |
提出日時 | 2020-05-23 22:54:49 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 710 bytes |
コンパイル時間 | 1,698 ms |
コンパイル使用メモリ | 169,692 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-10-09 10:21:04 |
合計ジャッジ時間 | 2,476 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,820 KB |
testcase_01 | WA | - |
testcase_02 | AC | 2 ms
6,816 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 2 ms
6,820 KB |
testcase_07 | WA | - |
ソースコード
#include <bits/stdc++.h> #define ALL(a) (a).begin(), (a).end() #define RALL(a) (a).rbegin(), (a).rend() #define pb push_back #define FOR(i, a, b) for (int i = (a); i < (b); ++i) #define rep(i, n) FOR(i, 0, n) #define ll long long using namespace std; const ll P = 1000000007; int gcd(int a, int b) { return b != 0 ? gcd(b, a % b) : a; } int lcm(int a, int b) { return a / gcd(a, b) * b; } int main() { cout << fixed << setprecision(10); int P1,P2,N; cin >> P1 >> P2 >> N; vector<int> R(N); rep(i,N) { cin >> R[i]; } int count = 0; rep(i,N) { for(int j=0;j<i;j++) { if(R[i]==R[j]) { count ++; } } } cout << count*(P1+P2) << endl; return 0; }