結果
問題 | No.1250 汝は倍数なりや? |
ユーザー | bonKotsu |
提出日時 | 2020-12-16 15:24:23 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,189 bytes |
コンパイル時間 | 1,715 ms |
コンパイル使用メモリ | 172,120 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-09-20 05:07:53 |
合計ジャッジ時間 | 4,648 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,752 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 | 1 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 |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | AC | 2 ms
5,376 KB |
testcase_13 | AC | 2 ms
5,376 KB |
testcase_14 | AC | 2 ms
5,376 KB |
testcase_15 | AC | 2 ms
5,376 KB |
testcase_16 | AC | 2 ms
5,376 KB |
testcase_17 | AC | 2 ms
5,376 KB |
testcase_18 | AC | 2 ms
5,376 KB |
testcase_19 | AC | 2 ms
5,376 KB |
testcase_20 | AC | 2 ms
5,376 KB |
testcase_21 | TLE | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
testcase_45 | -- | - |
testcase_46 | -- | - |
testcase_47 | -- | - |
testcase_48 | -- | - |
testcase_49 | -- | - |
testcase_50 | -- | - |
testcase_51 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; #define ll long long #define rep(i, n) for (int i = 0; i < (n); i++) #define P pair<ll, ll> vector<P> prime_factorize(ll N) { vector<P> res; for (ll a = 2; a * a <= N; a++) { // a で割り切れないとき if (N%a) continue; // 割り切れるとき, 何回割れるのかを試す ll ex = 0; while(N%a == 0) { ex++; N /= a; } res.push_back({a, ex}); // N は a で ex 回割れる } // 最後に(素数)が残った場合の処理 if (N != 1) res.push_back({N, 1}); return res; } int main() { int N; ll H; cin >> N >> H; if (H == 1) { cout << "YES" << endl; return 0; } vector<P> f1 = prime_factorize(H); vector<ll> a(N); rep(i, N) cin >> a[i]; // f1 に入っている素数でそれぞれ a[0]..a[N-1] が何回割れるか rep(i, f1.size()) { ll p = f1[i].first, ex_H = f1[i].second; ll ex = 0; rep(i, N) { while(a[i] % p == 0) { ex++; a[i] /= p; } if (ex >= ex_H) break; } if (ex >= ex_H) continue; cout << "NO" << endl; return 0; } cout << "YES" << endl; }