結果

問題 No.36 素数が嫌い!
ユーザー n_knuun_knuu
提出日時 2015-05-23 00:37:27
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 311 bytes
コンパイル時間 216 ms
コンパイル使用メモリ 82,212 KB
実行使用メモリ 59,020 KB
最終ジャッジ日時 2024-07-06 05:48:59
合計ジャッジ時間 3,785 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 94 ms
58,064 KB
testcase_01 AC 124 ms
58,720 KB
testcase_02 AC 32 ms
52,808 KB
testcase_03 AC 32 ms
52,456 KB
testcase_04 AC 32 ms
52,692 KB
testcase_05 AC 34 ms
58,856 KB
testcase_06 AC 37 ms
58,768 KB
testcase_07 AC 33 ms
57,244 KB
testcase_08 AC 34 ms
57,468 KB
testcase_09 AC 33 ms
58,136 KB
testcase_10 AC 34 ms
57,804 KB
testcase_11 AC 71 ms
58,060 KB
testcase_12 AC 150 ms
57,736 KB
testcase_13 AC 150 ms
58,008 KB
testcase_14 WA -
testcase_15 AC 31 ms
53,176 KB
testcase_16 AC 32 ms
52,756 KB
testcase_17 AC 32 ms
51,984 KB
testcase_18 AC 35 ms
58,716 KB
testcase_19 AC 78 ms
57,884 KB
testcase_20 AC 149 ms
57,436 KB
testcase_21 AC 124 ms
58,452 KB
testcase_22 AC 133 ms
58,052 KB
testcase_23 AC 93 ms
57,128 KB
testcase_24 AC 104 ms
58,116 KB
testcase_25 AC 99 ms
57,976 KB
testcase_26 AC 106 ms
57,436 KB
testcase_27 AC 136 ms
57,512 KB
testcase_28 AC 104 ms
59,020 KB
testcase_29 AC 149 ms
58,468 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def divisorsList(n):
    divsList = []
    for i in range(1, int(pow(n, 0.5))+1):
        if n % i == 0:
            divsList.append(i)
            if n // i != i:
                divsList.append(n//i)
    return sorted(divsList)
    
N = int(input())
d = divisorsList(N)

print('YES' if len(d) >= 5 else 'NO')
0