結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 206 ms
116,224 KB
testcase_01 AC 642 ms
187,492 KB
testcase_02 AC 25 ms
10,624 KB
testcase_03 AC 26 ms
10,624 KB
testcase_04 AC 26 ms
10,624 KB
testcase_05 AC 28 ms
11,264 KB
testcase_06 AC 28 ms
11,392 KB
testcase_07 AC 28 ms
11,392 KB
testcase_08 AC 25 ms
11,008 KB
testcase_09 AC 26 ms
11,392 KB
testcase_10 WA -
testcase_11 AC 350 ms
84,716 KB
testcase_12 AC 1,101 ms
237,908 KB
testcase_13 WA -
testcase_14 AC 267 ms
151,608 KB
testcase_15 AC 26 ms
10,752 KB
testcase_16 AC 25 ms
10,752 KB
testcase_17 AC 26 ms
10,624 KB
testcase_18 AC 26 ms
10,752 KB
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 343 ms
129,936 KB
testcase_25 AC 230 ms
128,100 KB
testcase_26 AC 651 ms
148,504 KB
testcase_27 AC 946 ms
206,188 KB
testcase_28 AC 645 ms
145,524 KB
testcase_29 AC 995 ms
230,632 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:
        print("NO")
                
0