結果

問題 No.546 オンリー・ワン
ユーザー vwxyzvwxyz
提出日時 2021-09-04 02:20:14
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2 ms / 2,000 ms
コード長 657 bytes
コンパイル時間 3,337 ms
コンパイル使用メモリ 270,412 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-08-22 05:33:15
合計ジャッジ時間 4,284 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#define _GLIBCXX_DEBUG
#include <bits/stdc++.h>
using namespace std;

int main(){
    int N,L,H;cin>>N>>L>>H;
    std::vector<long long> C(N);
    for(int i=0;i<N;i++){
        cin>>C[i];
    }
    int ans=0;
    for(int bit=1;bit<1<<N;bit++){
        long long c=1;
        int cnt=0;
        for(int i=0;i<N;i++){
            if(bit>>i&1){
                c*=C[i]/gcd(c,C[i]);
                cnt+=1;
                if(c>1e9){
                    c=1e9+1;
                }
            }
        }
        if(cnt%2==1){
            ans+=(H/c-(L-1)/c)*cnt;
        }
        else{
            ans-=(H/c-(L-1)/c)*cnt;
        }
    }
    cout<<ans<<endl;
}
0