結果

問題 No.36 素数が嫌い!
ユーザー mkawa2mkawa2
提出日時 2020-01-02 22:50:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 172 ms / 5,000 ms
コード長 229 bytes
コンパイル時間 298 ms
コンパイル使用メモリ 82,236 KB
実行使用メモリ 60,148 KB
最終ジャッジ日時 2024-11-22 18:23:08
合計ジャッジ時間 3,124 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,684 KB
testcase_01 AC 44 ms
58,780 KB
testcase_02 AC 37 ms
51,676 KB
testcase_03 AC 38 ms
52,564 KB
testcase_04 AC 38 ms
52,084 KB
testcase_05 AC 40 ms
58,420 KB
testcase_06 AC 42 ms
57,652 KB
testcase_07 AC 42 ms
57,848 KB
testcase_08 AC 38 ms
53,160 KB
testcase_09 AC 38 ms
52,708 KB
testcase_10 AC 39 ms
52,140 KB
testcase_11 AC 84 ms
58,240 KB
testcase_12 AC 172 ms
58,968 KB
testcase_13 AC 172 ms
58,724 KB
testcase_14 AC 43 ms
60,148 KB
testcase_15 AC 38 ms
53,084 KB
testcase_16 AC 38 ms
52,232 KB
testcase_17 AC 38 ms
52,356 KB
testcase_18 AC 37 ms
52,388 KB
testcase_19 AC 37 ms
52,240 KB
testcase_20 AC 45 ms
59,268 KB
testcase_21 AC 38 ms
52,700 KB
testcase_22 AC 38 ms
52,740 KB
testcase_23 AC 41 ms
52,108 KB
testcase_24 AC 65 ms
57,928 KB
testcase_25 AC 39 ms
51,956 KB
testcase_26 AC 102 ms
58,160 KB
testcase_27 AC 45 ms
58,740 KB
testcase_28 AC 97 ms
58,156 KB
testcase_29 AC 44 ms
57,932 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
first=True
d=2
while 1:
    if n%d==0:
        if first:
            n//=d
            d=1
            first=False
        else:
            print("YES")
            exit()
    d+=1
    if d**2>n:break
print("NO")
0