結果

問題 No.36 素数が嫌い!
ユーザー mkawa2mkawa2
提出日時 2020-01-02 22:50:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 160 ms / 5,000 ms
コード長 229 bytes
コンパイル時間 917 ms
コンパイル使用メモリ 82,028 KB
実行使用メモリ 59,820 KB
最終ジャッジ日時 2024-05-02 06:46:37
合計ジャッジ時間 3,021 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,604 KB
testcase_01 AC 40 ms
58,304 KB
testcase_02 AC 33 ms
52,216 KB
testcase_03 AC 33 ms
52,708 KB
testcase_04 AC 33 ms
53,140 KB
testcase_05 AC 37 ms
58,124 KB
testcase_06 AC 36 ms
59,408 KB
testcase_07 AC 38 ms
57,852 KB
testcase_08 AC 35 ms
52,616 KB
testcase_09 AC 35 ms
51,996 KB
testcase_10 AC 36 ms
52,492 KB
testcase_11 AC 80 ms
58,388 KB
testcase_12 AC 160 ms
59,520 KB
testcase_13 AC 156 ms
59,404 KB
testcase_14 AC 39 ms
59,820 KB
testcase_15 AC 33 ms
51,824 KB
testcase_16 AC 33 ms
52,244 KB
testcase_17 AC 33 ms
52,424 KB
testcase_18 AC 33 ms
53,112 KB
testcase_19 AC 34 ms
53,628 KB
testcase_20 AC 44 ms
58,844 KB
testcase_21 AC 31 ms
52,136 KB
testcase_22 AC 34 ms
52,640 KB
testcase_23 AC 34 ms
52,780 KB
testcase_24 AC 57 ms
59,580 KB
testcase_25 AC 32 ms
52,488 KB
testcase_26 AC 88 ms
57,992 KB
testcase_27 AC 41 ms
58,616 KB
testcase_28 AC 94 ms
57,784 KB
testcase_29 AC 41 ms
58,376 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