結果
問題 | No.546 オンリー・ワン |
ユーザー | vwxyz |
提出日時 | 2021-09-04 02:20:14 |
言語 | C++23 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 2 ms / 2,000 ms |
コード長 | 657 bytes |
コンパイル時間 | 4,000 ms |
コンパイル使用メモリ | 271,192 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-05-09 11:28:51 |
合計ジャッジ時間 | 4,302 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
ソースコード
#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; }