結果

問題 No.36 素数が嫌い!
ユーザー しらっ亭しらっ亭
提出日時 2015-07-29 03:29:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 362 ms / 5,000 ms
コード長 294 bytes
コンパイル時間 137 ms
コンパイル使用メモリ 82,100 KB
実行使用メモリ 60,624 KB
最終ジャッジ日時 2024-06-27 00:22:07
合計ジャッジ時間 4,111 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 255 ms
57,524 KB
testcase_01 AC 59 ms
57,916 KB
testcase_02 AC 37 ms
51,936 KB
testcase_03 AC 38 ms
52,344 KB
testcase_04 AC 36 ms
53,032 KB
testcase_05 AC 41 ms
59,252 KB
testcase_06 AC 39 ms
57,260 KB
testcase_07 AC 40 ms
57,684 KB
testcase_08 AC 37 ms
52,796 KB
testcase_09 AC 37 ms
54,040 KB
testcase_10 AC 38 ms
57,912 KB
testcase_11 AC 81 ms
57,648 KB
testcase_12 AC 170 ms
58,148 KB
testcase_13 AC 167 ms
58,044 KB
testcase_14 AC 39 ms
58,000 KB
testcase_15 AC 36 ms
53,076 KB
testcase_16 AC 36 ms
53,060 KB
testcase_17 AC 36 ms
53,960 KB
testcase_18 AC 36 ms
52,028 KB
testcase_19 AC 76 ms
58,468 KB
testcase_20 AC 78 ms
57,328 KB
testcase_21 AC 158 ms
57,992 KB
testcase_22 AC 52 ms
58,236 KB
testcase_23 AC 45 ms
58,768 KB
testcase_24 AC 176 ms
58,912 KB
testcase_25 AC 200 ms
58,680 KB
testcase_26 AC 362 ms
57,508 KB
testcase_27 AC 57 ms
60,624 KB
testcase_28 AC 355 ms
59,576 KB
testcase_29 AC 46 ms
59,660 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def solve():
    N = int(input())

    c = 0
    i = 2
    while i * i < N:
        while N % i == 0:
            N /= i
            c += 1
        i += 1
    if N > 1:
        c += 1
    return c >= 3


def main():
    print('YES' if solve() else 'NO')


if __name__ == '__main__':
    main()
0