結果

問題 No.2751 429-like Number
ユーザー tour2sttour2st
提出日時 2024-05-10 22:14:04
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 761 bytes
コンパイル時間 914 ms
コンパイル使用メモリ 107,016 KB
実行使用メモリ 10,148 KB
最終ジャッジ日時 2024-12-20 05:54:25
合計ジャッジ時間 26,965 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,820 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,820 KB
testcase_03 AC 2 ms
6,816 KB
testcase_04 AC 2 ms
6,820 KB
testcase_05 AC 2 ms
6,816 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 62 ms
6,816 KB
testcase_10 TLE -
testcase_11 AC 1,466 ms
6,816 KB
testcase_12 AC 1,543 ms
6,816 KB
testcase_13 AC 1,136 ms
6,820 KB
testcase_14 AC 3,808 ms
6,820 KB
testcase_15 AC 27 ms
6,820 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 1,109 ms
6,820 KB
testcase_19 AC 1,099 ms
6,816 KB
testcase_20 AC 1,095 ms
6,816 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 1,094 ms
6,820 KB
testcase_26 AC 1,117 ms
6,820 KB
testcase_27 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
#include <stack>
#include <queue>
#include <set>
#include <map>
#include <random>
#include <iomanip>
#include <time.h>
#include <bitset>
#include <map>
#include <numeric>
#include <atcoder/modint>
#include <atcoder/dsu>
using namespace atcoder;
using namespace std;
using mint = modint998244353;
#define ll long long
#define pll pair<ll,ll>

ll q,a;

int main()
{
    cin >> q;
    while(q--)
    {
        cin >> a;
        ll cnt = 0;
        for(ll i = 2; i*i < a; i++)
        {
            while(a%i==0)
            {
                a /= i;
                cnt++;
            }
        }
        if(a!=1) cnt++;
        if(cnt==3) cout << "Yes" << endl;
        else cout << "No" << endl;
    }
}
0