結果
問題 | No.2751 429-like Number |
ユーザー | yumekawayui |
提出日時 | 2024-05-12 16:52:39 |
言語 | C++17(clang) (17.0.6 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 1,073 ms / 4,000 ms |
コード長 | 1,350 bytes |
コンパイル時間 | 2,420 ms |
コンパイル使用メモリ | 165,172 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-05-12 16:52:53 |
合計ジャッジ時間 | 13,282 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 3 ms
6,940 KB |
testcase_02 | AC | 2 ms
6,940 KB |
testcase_03 | AC | 3 ms
6,940 KB |
testcase_04 | AC | 2 ms
6,944 KB |
testcase_05 | AC | 2 ms
6,940 KB |
testcase_06 | AC | 4 ms
6,940 KB |
testcase_07 | AC | 374 ms
6,940 KB |
testcase_08 | AC | 373 ms
6,944 KB |
testcase_09 | AC | 401 ms
6,944 KB |
testcase_10 | AC | 1,073 ms
6,940 KB |
testcase_11 | AC | 386 ms
6,940 KB |
testcase_12 | AC | 429 ms
6,944 KB |
testcase_13 | AC | 407 ms
6,944 KB |
testcase_14 | AC | 544 ms
6,944 KB |
testcase_15 | AC | 387 ms
6,944 KB |
testcase_16 | AC | 409 ms
6,944 KB |
testcase_17 | AC | 390 ms
6,940 KB |
testcase_18 | AC | 401 ms
6,944 KB |
testcase_19 | AC | 414 ms
6,944 KB |
testcase_20 | AC | 394 ms
6,940 KB |
testcase_21 | AC | 402 ms
6,944 KB |
testcase_22 | AC | 425 ms
6,944 KB |
testcase_23 | AC | 401 ms
6,944 KB |
testcase_24 | AC | 410 ms
6,940 KB |
testcase_25 | AC | 404 ms
6,944 KB |
testcase_26 | AC | 422 ms
6,940 KB |
testcase_27 | AC | 397 ms
6,944 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; const vector<int> dx = {0, 0, 1, -1}; const vector<int> dy = {1, -1, 0, 0}; #define vec vector #define int long long #define double long double //cout<<setprecision(15)<<fixed<<.. #define rep(i, n) for (int i = 0; i < (int)(n); i++) #define req(i, x, n) for (int i = x; i < (int)(n); i++) #define pii pair<int,int> #define pq priority_queue #define all(V) begin(V),end(V) #define printpair(p) cout<<p.first<<" "<<p.second<<"\n" #define tple tuple<int,int,int> template<class T, class U> inline bool chmax(T &a, const U &b) { if (a < b) { a = b; return true; } return false; } template<class T, class U> inline bool chmin(T &a, const U &b) { if (a > b) { a = b; return true; } return false; } #define nexper(Z) next_permutation(all(Z)) #define pb push_back signed main(){ ios::sync_with_stdio(false); cin.tie(nullptr); int n; cin>>n; vec<bool> E(100001,true); vec<int> Z; E[1]=E[0]=false; for(int i=2;i<=100000;i++){ if(!E[i]){continue;} Z.push_back(i); for(int j=i+i;j<=100000;j+=i){ E[j]=false; } } rep(i,n){ int k;cin>>k; int cnt=0; for(int z:Z){ while(k%z==0){k/=z;cnt++;} } if(k!=1){cnt++;} if(cnt==3){cout<<"Yes\n";} else{cout<<"No\n";} } }