結果

問題 No.546 オンリー・ワン
ユーザー Kutimoti_TKutimoti_T
提出日時 2018-09-03 11:01:08
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 729 bytes
コンパイル時間 1,709 ms
コンパイル使用メモリ 161,252 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-16 06:17:21
合計ジャッジ時間 2,448 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 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 1 ms
5,376 KB
testcase_08 AC 2 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 2 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using i64 = long long;
#define rep(i,s,e) for(int (i) = (s);(i) <= (e);(i)++)
#define all(x) x.begin(),x.end()

i64 gcd(i64 a,i64 b){
  if(b == 0) return a;
  return gcd(b,a % b);
}
int N;
i64 L,H;
vector<i64> C;

i64 calc(i64 k){
  i64 res = 0;
  for(int i = 1;i < (1 << N);i++){
    i64 LCM = 1;
    for(int j = 0;j < N;j++){
      if(i & (1 << j)){
        LCM = LCM / gcd(LCM , C[j]) * C[j];
        if(LCM > k) break;
      }
    }
    i64 p = __builtin_popcount(i);
    if(p & 1) res += (k / LCM) * p;
    else res -= (k / LCM) * p;
  }
  return res;
}

int main(){
  cin >> N >> L >> H;
  C.resize(N);
  rep(i,0,N - 1) cin >> C[i];
  cout << calc(H) - calc(L - 1)  << endl;
}
0