結果

問題 No.36 素数が嫌い!
ユーザー kekurekekure
提出日時 2019-07-06 22:48:23
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 431 bytes
コンパイル時間 363 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 60,048 KB
最終ジャッジ日時 2024-10-01 14:46:23
合計ジャッジ時間 3,020 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,816 KB
testcase_01 AC 38 ms
58,120 KB
testcase_02 AC 34 ms
53,576 KB
testcase_03 AC 31 ms
53,176 KB
testcase_04 WA -
testcase_05 AC 35 ms
59,052 KB
testcase_06 AC 37 ms
58,168 KB
testcase_07 AC 35 ms
58,404 KB
testcase_08 AC 31 ms
52,180 KB
testcase_09 AC 32 ms
51,824 KB
testcase_10 AC 34 ms
52,244 KB
testcase_11 AC 72 ms
58,400 KB
testcase_12 AC 147 ms
58,072 KB
testcase_13 WA -
testcase_14 AC 36 ms
57,704 KB
testcase_15 AC 33 ms
52,896 KB
testcase_16 AC 32 ms
53,000 KB
testcase_17 AC 34 ms
53,008 KB
testcase_18 AC 32 ms
53,232 KB
testcase_19 AC 33 ms
53,944 KB
testcase_20 AC 39 ms
57,916 KB
testcase_21 AC 33 ms
53,536 KB
testcase_22 AC 35 ms
52,068 KB
testcase_23 AC 37 ms
53,572 KB
testcase_24 AC 57 ms
58,844 KB
testcase_25 AC 32 ms
53,684 KB
testcase_26 AC 115 ms
57,924 KB
testcase_27 AC 161 ms
59,928 KB
testcase_28 AC 122 ms
58,740 KB
testcase_29 AC 165 ms
60,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
N = int(input())

limit = int(math.sqrt(N))
div = []
n = N
i = 2

if (n == 1 or n == 2) :
    print('NO')
else :
    cnt = 0
    while(True) :
        if (n % i == 0) :
            n //= i
            cnt += 1
        else :
            i += 1
        
        if (i > limit or cnt == 2) :
            break
    if (cnt == 2) :
        print('YES')
    else :
        print('NO')
            
        
        








0