結果
問題 | No.2682 Visible Divisible |
ユーザー | cho435 |
提出日時 | 2024-03-20 21:18:02 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 611 bytes |
コンパイル時間 | 4,090 ms |
コンパイル使用メモリ | 270,376 KB |
実行使用メモリ | 6,824 KB |
最終ジャッジ日時 | 2024-09-30 07:04:15 |
合計ジャッジ時間 | 5,045 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 11 ms
6,820 KB |
testcase_01 | AC | 12 ms
6,816 KB |
testcase_02 | AC | 12 ms
6,816 KB |
testcase_03 | AC | 12 ms
6,816 KB |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 11 ms
6,820 KB |
testcase_08 | AC | 2 ms
6,820 KB |
testcase_09 | AC | 1 ms
6,820 KB |
testcase_10 | AC | 1 ms
6,816 KB |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | AC | 11 ms
6,816 KB |
testcase_14 | WA | - |
testcase_15 | AC | 11 ms
6,816 KB |
testcase_16 | WA | - |
ソースコード
#include <bits/stdc++.h> #include <atcoder/all> using namespace std; using ll = long long; #define rep(i,n) for(ll i=0;i<(ll)(n);i++) using mint = atcoder::modint998244353; // divide map<ll,ll> dv(ll x){ map<ll,ll> rt; for(ll i=2;i*i<=x;i++){ while(x%i==0){ rt[i]++; x/=i; } } if(x!=1) rt[x]++; return rt; } int main(){ int n,k; cin>>n>>k; vector<int> a(n); rep(i,n) cin>>a.at(i); auto dvk=dv(k); rep(i,n){ auto dva=dv(a.at(i)); for(auto [p,c]:dva){ if(dvk.count(p)){ if(dvk.at(p)<=c){ dvk.erase(p); } } } } if(dvk.empty()) cout<<"Yes\n"; else cout<<"No\n"; }