結果
問題 | No.1250 汝は倍数なりや? |
ユーザー | ピッピ |
提出日時 | 2020-12-05 10:45:55 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,728 bytes |
コンパイル時間 | 2,243 ms |
コンパイル使用メモリ | 203,364 KB |
実行使用メモリ | 816,768 KB |
最終ジャッジ日時 | 2024-09-15 16:49:52 |
合計ジャッジ時間 | 7,389 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | WA | - |
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 | WA | - |
testcase_11 | WA | - |
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 | WA | - |
testcase_18 | AC | 2 ms
5,376 KB |
testcase_19 | AC | 2 ms
5,376 KB |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | AC | 2 ms
5,376 KB |
testcase_23 | AC | 2 ms
5,376 KB |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | AC | 2 ms
5,376 KB |
testcase_27 | WA | - |
testcase_28 | AC | 3 ms
5,376 KB |
testcase_29 | AC | 2 ms
5,376 KB |
testcase_30 | AC | 2 ms
5,376 KB |
testcase_31 | AC | 2 ms
5,376 KB |
testcase_32 | AC | 3 ms
5,376 KB |
testcase_33 | RE | - |
testcase_34 | RE | - |
testcase_35 | RE | - |
testcase_36 | RE | - |
testcase_37 | RE | - |
testcase_38 | RE | - |
testcase_39 | RE | - |
testcase_40 | MLE | - |
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; const double pi = 3.14159265358979; #define setup\ cin.tie(0);\ ios::sync_with_stdio(false);\ cout << setprecision(20) << fixed; #define int long long int #define db double #define P pair<int,int> #define F first #define S second #define endl "\n" #define dtor(deg) (((deg)/360)*2*pi) #define rtod(rad) (((rad)/2/pi)*360) #define all(a) a.begin(),a.end() #define Srep(n) for(int i = 0; i < n; i++) #define Lrep(i,a,n) for(int i = a; i < n; i++) #define Brep1st(n) for(int bit = 0; bit < (1 << n); bit++) #define Brep2nd(n) Srep(n) if(bit >> i & 1) #define rep2d(n,m) Srep(n) Lrep(j,0,m) #define vi vector<int> #define vvi vector<vi> #define vdb vector<db> #define vb vector<bool> bool is_prime(int n){ if (n < 2) return 0; else if (n == 2) return 1; else if (n % 2 == 0) return 0; for(int i = 3; i * i <= n; i += 2) if(n % i == 0) return 0; return 1; } signed main(){ setup; int n, h; cin >> n >> h; if(is_prime(h)){ Srep(n){ int input; cin >> input; if(input == h){ cout << "YES" << endl; return 0; } } cout << "NO" << endl; return 0; } vi divisor(h); for(int i = 2; i * i <= h; i++){ while(!(h % i)){ h /= i; divisor[i]++; } } Srep(n){ int input; cin >> input; for(int j = 2; j * j <= input; j++){ while(!(input % j)){ input /= j; divisor[j]--; } } } auto itr = max_element(all(divisor)); if(*itr <= 0) cout << "YES" << endl; else cout << "NO" << endl; }