結果

問題 No.586 ダブルブッキング
ユーザー kazuki95810kazuki95810
提出日時 2020-05-23 22:54:49
言語 C++14
(gcc 13.2.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 710 bytes
コンパイル時間 1,512 ms
コンパイル使用メモリ 165,804 KB
実行使用メモリ 4,504 KB
最終ジャッジ日時 2023-07-30 15:07:32
合計ジャッジ時間 2,173 ms
ジャッジサーバーID
(参考情報)
judge5 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,380 KB
testcase_01 WA -
testcase_02 AC 2 ms
4,376 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 2 ms
4,376 KB
testcase_07 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#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;
}
0