結果

問題 No.36 素数が嫌い!
ユーザー kekurekekure
提出日時 2019-07-07 08:11:56
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 486 bytes
コンパイル時間 356 ms
コンパイル使用メモリ 82,956 KB
実行使用メモリ 59,664 KB
最終ジャッジ日時 2024-10-02 14:41:34
合計ジャッジ時間 2,905 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,796 KB
testcase_01 AC 45 ms
58,008 KB
testcase_02 AC 38 ms
52,544 KB
testcase_03 AC 38 ms
52,800 KB
testcase_04 AC 37 ms
53,456 KB
testcase_05 AC 40 ms
58,464 KB
testcase_06 WA -
testcase_07 AC 40 ms
58,012 KB
testcase_08 AC 37 ms
52,532 KB
testcase_09 AC 37 ms
52,388 KB
testcase_10 AC 38 ms
52,068 KB
testcase_11 AC 82 ms
57,772 KB
testcase_12 AC 167 ms
58,416 KB
testcase_13 AC 168 ms
58,200 KB
testcase_14 AC 42 ms
59,664 KB
testcase_15 AC 38 ms
52,292 KB
testcase_16 AC 37 ms
52,788 KB
testcase_17 AC 38 ms
52,084 KB
testcase_18 AC 38 ms
53,140 KB
testcase_19 AC 38 ms
52,572 KB
testcase_20 AC 46 ms
58,124 KB
testcase_21 AC 38 ms
52,352 KB
testcase_22 AC 38 ms
52,604 KB
testcase_23 AC 38 ms
52,764 KB
testcase_24 AC 64 ms
58,072 KB
testcase_25 AC 37 ms
51,944 KB
testcase_26 AC 97 ms
59,132 KB
testcase_27 AC 45 ms
58,200 KB
testcase_28 AC 97 ms
58,372 KB
testcase_29 AC 43 ms
58,680 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
N = int(input())

div = []
n = N
i = 2

limit = int(math.sqrt(N))

while (i <= limit) :
    if (n % i == 0) :
        n //= i
        break
    else :
        i += 1

if (n == N or n == i):
    print('NO')
else :
    limit = int(math.sqrt(n))
    while (i <= limit) :
        if (n % i == 0) :
            n //= i
            break
        else :
            i += 1
    if i == limit + 1 :
        print('NO')
    else :
        print('YES')
    

        
        








0