結果

問題 No.36 素数が嫌い!
ユーザー dazydazy
提出日時 2017-11-29 21:43:48
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 769 bytes
コンパイル時間 660 ms
コンパイル使用メモリ 59,100 KB
実行使用メモリ 12,800 KB
最終ジャッジ日時 2024-05-05 18:59:26
合計ジャッジ時間 2,382 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
7,680 KB
testcase_01 AC 52 ms
10,752 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 WA -
testcase_05 AC 1 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 1 ms
5,376 KB
testcase_11 AC 24 ms
6,400 KB
testcase_12 AC 93 ms
12,800 KB
testcase_13 AC 90 ms
12,800 KB
testcase_14 AC 31 ms
9,216 KB
testcase_15 AC 1 ms
5,376 KB
testcase_16 AC 2 ms
5,376 KB
testcase_17 AC 1 ms
5,376 KB
testcase_18 AC 1 ms
5,376 KB
testcase_19 AC 7 ms
7,040 KB
testcase_20 AC 69 ms
12,800 KB
testcase_21 AC 10 ms
10,496 KB
testcase_22 AC 15 ms
10,880 KB
testcase_23 AC 15 ms
7,808 KB
testcase_24 AC 31 ms
8,320 KB
testcase_25 AC 5 ms
8,192 KB
testcase_26 AC 45 ms
9,088 KB
testcase_27 AC 74 ms
11,520 KB
testcase_28 AC 43 ms
8,960 KB
testcase_29 AC 86 ms
12,288 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <math.h>
using namespace std;

#define fastcin {\
    cin.tie(0);\
    ios::sync_with_stdio(false);\
}
#define rep(i, a, b) for(int i = a; i < b; ++i)
#define scan(x) cin >> x
#define print(x) cout << x << "\n"


int main() {
    fastcin;
    long N; scan(N);
    auto sq = (int)sqrt(N);
    bool flag = false, p[sq+1];
    int k;
    rep(i, 2, sq+1) p[i] = true;
    rep(i, 2, sq+1) {
        if (p[i]) {
            k = i;
            while (!(N%k)) {
                if (flag) {
                    print("YES");
                    return 0;
                }
                flag = true;
                k *= k;
            }
            for (int j = i<<1; j < sq+1; j+=i) p[j] = false;
        }
    }
    print("NO");
    return 0;
}
0