結果

問題 No.36 素数が嫌い!
ユーザー Konton7Konton7
提出日時 2019-05-17 15:48:47
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 546 bytes
コンパイル時間 117 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 237,828 KB
最終ジャッジ日時 2024-09-17 05:56:49
合計ジャッジ時間 13,967 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 233 ms
115,868 KB
testcase_01 AC 694 ms
187,572 KB
testcase_02 AC 31 ms
10,624 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 30 ms
10,624 KB
testcase_05 AC 33 ms
11,392 KB
testcase_06 AC 35 ms
11,392 KB
testcase_07 AC 34 ms
11,264 KB
testcase_08 AC 31 ms
10,752 KB
testcase_09 AC 31 ms
11,136 KB
testcase_10 AC 32 ms
11,264 KB
testcase_11 AC 392 ms
84,664 KB
testcase_12 AC 1,140 ms
237,828 KB
testcase_13 WA -
testcase_14 AC 299 ms
151,684 KB
testcase_15 AC 30 ms
10,624 KB
testcase_16 AC 32 ms
10,752 KB
testcase_17 AC 31 ms
10,752 KB
testcase_18 AC 30 ms
10,624 KB
testcase_19 AC 512 ms
99,248 KB
testcase_20 AC 1,066 ms
237,132 KB
testcase_21 AC 876 ms
184,004 KB
testcase_22 AC 906 ms
189,408 KB
testcase_23 AC 567 ms
117,864 KB
testcase_24 AC 381 ms
129,948 KB
testcase_25 AC 253 ms
128,072 KB
testcase_26 AC 707 ms
148,220 KB
testcase_27 AC 996 ms
206,036 KB
testcase_28 AC 697 ms
146,452 KB
testcase_29 AC 1,113 ms
229,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
plist = [2] + [ i for i in range(3,int(n**0.5)+2,2) ]

if n < 7:
    print("NO")

else:
    q = 0
    clist = []
    for i in plist:
        if n % i == 0:
            clist.append(i)
            n //= i
            if n % i == 0:
                print("YES")
                q = 1
                break
            elif len(clist) == 3:
                print("YES")
                q = 1
                break
    if q == 0:
        if len(clist) == 2 and n != 1:
            print("YES")
        else:
            print("NO")
0