結果
問題 | No.1250 汝は倍数なりや? |
ユーザー | paruf4 |
提出日時 | 2020-10-09 23:36:31 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 3,029 bytes |
コンパイル時間 | 2,051 ms |
コンパイル使用メモリ | 205,952 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-20 14:28:45 |
合計ジャッジ時間 | 3,698 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | 1 ms
5,376 KB |
testcase_04 | WA | - |
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 | 1 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | WA | - |
testcase_12 | AC | 1 ms
5,376 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | AC | 2 ms
5,376 KB |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | AC | 2 ms
5,376 KB |
testcase_24 | AC | 1 ms
5,376 KB |
testcase_25 | AC | 1 ms
5,376 KB |
testcase_26 | WA | - |
testcase_27 | AC | 2 ms
5,376 KB |
testcase_28 | WA | - |
testcase_29 | AC | 2 ms
5,376 KB |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | AC | 33 ms
5,376 KB |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | AC | 15 ms
5,376 KB |
testcase_38 | AC | 16 ms
5,376 KB |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | AC | 17 ms
5,376 KB |
testcase_42 | AC | 14 ms
5,376 KB |
testcase_43 | AC | 29 ms
5,376 KB |
testcase_44 | AC | 11 ms
5,376 KB |
testcase_45 | WA | - |
testcase_46 | AC | 11 ms
5,376 KB |
testcase_47 | WA | - |
testcase_48 | AC | 2 ms
5,376 KB |
testcase_49 | AC | 2 ms
5,376 KB |
testcase_50 | WA | - |
testcase_51 | AC | 2 ms
5,376 KB |
ソースコード
#include <bits/stdc++.h> #include <algorithm> // #include <atcoder/all> #include <functional> #include <map> #include <queue> #include <set> #include <stack> using namespace std; // using namespace atcoder; using ll = long long; using ull = unsigned long long; #define REP(i, m, n) for (ll(i) = (ll)(m); i < (ll)(n); ++i) #define REP2(i, m, n) for (ll(i) = (ll)(n)-1; i >= (ll)(m); --i) #define rep(i, n) REP(i, 0, n) #define rep2(i, n) REP2(i, 0, n) #define drep(i, n) for (ll(i) = (ll)(n); i >= 0; i--) #define all(hoge) (hoge).begin(), (hoge).end() #define rall(hoge) (hoge).rbegin(), (hoge).rend() #define en '\n' // using Edge = pair<ll, ll>; // using Graph = vector<vector<Edge>>; typedef vector<ll> vl; typedef vector<vector<ll>> vvl; typedef vector<vector<vector<ll>>> vvvl; typedef vector<string> vs; typedef vector<vector<string>> vvs; typedef pair<ll, ll> P; constexpr long long INF = 1LL << 30; constexpr int INF_INT = 1 << 25; constexpr long long MOD = (ll)1e9 + 7; // constexpr long long MOD = 998244353LL; using ld = long double; static const ld pi = 3.141592653589793L; template <class T> inline void print(T x) { cout << x << '\n'; } template <class T> bool chmax(T& a, const T& b) { if (a < b) { a = b; return 1; } return 0; } template <class T> bool chmin(T& a, const T& b) { if (b < a) { a = b; return 1; } return 0; } long long gcd(long long x, long long y) { return y ? gcd(y, x % y) : x; } long long lcm(long long x, long long y) { return x / gcd(x, y) * y; } // ~~~~~~~~~~~~~~memo~~~~~~~~~~~~~~ // for (int i = 0; i < n; ++i) // cout << res << endl; // cout << res << '\n'; // int型の2次元配列(h×w要素の)の宣言 // vector<vector<int>> data(h, vector<int>(w)); // rotate(s.begin(), s.begin() + 1, s.end()); // sort(all(a),greater<int>()); // s.substr(0,2) 先頭から2文字切り出す // for (auto it = mp.rbegin();it != mp.rend(); ++it) vector<pair<long long, long long> > prime_factorize(long long N) { vector<pair<long long, long long> > res; for (long long a = 2; a * a <= N; ++a) { if (N % a != 0) continue; long long ex = 0; while (N % a == 0) { ++ex; N /= a; } res.push_back({a, ex}); } if (N != 1) res.push_back({N, 1}); return res; } int main() { ios::sync_with_stdio(false); cin.tie(0); ll n,h; cin >> n >> h; vl a(n); rep(i,n) cin >> a[i]; auto pf = prime_factorize(h); ll sz = pf.size(); vl cnt(sz,0); rep(i,n) { ll j = 0; for (auto p:pf) { ll v = p.first; ll count = p.second; if (count == 0) continue; while(a[i]%v == 0 && count > 0) { count--; a[i] /= v; } cnt[j] = count; j++; } } bool f = true; rep(i,sz) { if (cnt[i] != 0) f = false; } if (f) { print("YES"); } else { print("NO"); } return 0; }