結果

問題 No.36 素数が嫌い!
ユーザー  nemunemu nemunemu
提出日時 2023-05-01 10:53:06
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 371 bytes
コンパイル時間 591 ms
コンパイル使用メモリ 70,236 KB
実行使用メモリ 10,020 KB
最終ジャッジ日時 2024-11-20 10:38:01
合計ジャッジ時間 44,932 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,016 KB
testcase_01 AC 3 ms
9,888 KB
testcase_02 AC 2 ms
10,020 KB
testcase_03 AC 2 ms
10,020 KB
testcase_04 AC 2 ms
10,016 KB
testcase_05 AC 2,080 ms
6,816 KB
testcase_06 AC 2 ms
6,820 KB
testcase_07 TLE -
testcase_08 AC 2 ms
6,820 KB
testcase_09 AC 2 ms
6,816 KB
testcase_10 AC 2 ms
6,816 KB
testcase_11 TLE -
testcase_12 TLE -
testcase_13 AC 102 ms
6,820 KB
testcase_14 AC 2 ms
6,820 KB
testcase_15 AC 2 ms
6,816 KB
testcase_16 AC 2 ms
6,816 KB
testcase_17 AC 2 ms
6,816 KB
testcase_18 AC 2 ms
6,820 KB
testcase_19 AC 2 ms
6,816 KB
testcase_20 AC 3 ms
6,816 KB
testcase_21 AC 2 ms
6,816 KB
testcase_22 AC 2 ms
6,816 KB
testcase_23 AC 2 ms
6,816 KB
testcase_24 AC 9 ms
6,820 KB
testcase_25 AC 2 ms
6,820 KB
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <cmath>
using namespace std;
typedef long long ll;

ll f(ll x) {
    if (x % 2 == 0) return x / 2;
    for (int i = 3; i <= x; i += 2) if (x % i == 0) return x / i;
    return 1;
}

int main() {
    ll N;
    cin >> N;

    if (f(f(N)) > 1) {
        cout << "YES" << endl;
    } else {
        cout << "NO" << endl;
    }
}
0