結果

問題 No.36 素数が嫌い!
ユーザー tnoda_tnoda_
提出日時 2015-07-31 17:25:10
言語 Python2
(2.7.18)
結果
AC  
実行時間 979 ms / 5,000 ms
コード長 250 bytes
コンパイル時間 61 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-06-27 00:22:44
合計ジャッジ時間 4,371 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 10 ms
6,816 KB
testcase_01 AC 28 ms
6,944 KB
testcase_02 AC 11 ms
6,944 KB
testcase_03 AC 11 ms
6,940 KB
testcase_04 AC 11 ms
6,944 KB
testcase_05 AC 12 ms
6,944 KB
testcase_06 AC 14 ms
6,940 KB
testcase_07 AC 15 ms
6,940 KB
testcase_08 AC 11 ms
6,944 KB
testcase_09 AC 11 ms
6,940 KB
testcase_10 AC 12 ms
6,940 KB
testcase_11 AC 328 ms
6,940 KB
testcase_12 AC 979 ms
6,944 KB
testcase_13 AC 969 ms
6,944 KB
testcase_14 AC 17 ms
6,944 KB
testcase_15 AC 11 ms
6,944 KB
testcase_16 AC 11 ms
6,940 KB
testcase_17 AC 11 ms
6,944 KB
testcase_18 AC 11 ms
6,940 KB
testcase_19 AC 11 ms
6,940 KB
testcase_20 AC 41 ms
6,940 KB
testcase_21 AC 11 ms
6,940 KB
testcase_22 AC 11 ms
6,944 KB
testcase_23 AC 11 ms
6,944 KB
testcase_24 AC 150 ms
6,940 KB
testcase_25 AC 11 ms
6,940 KB
testcase_26 AC 347 ms
6,940 KB
testcase_27 AC 29 ms
6,944 KB
testcase_28 AC 342 ms
6,944 KB
testcase_29 AC 20 ms
6,940 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def factor(x):
    i = 2
    while i * i <= x:
        if x % i == 0:
            return i
        i += 1
    return -1

N = input()
p = factor(N)
if p < 0:
    print('NO')
    quit()
p = factor(N/p)
if p < 0:
    print('NO')
    quit()
print('YES')
0