結果

問題 No.36 素数が嫌い!
ユーザー ronpooronpoo
提出日時 2023-08-23 14:29:29
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 381 bytes
コンパイル時間 180 ms
コンパイル使用メモリ 82,728 KB
実行使用メモリ 58,988 KB
最終ジャッジ日時 2024-06-01 12:01:21
合計ジャッジ時間 4,359 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
57,056 KB
testcase_01 AC 150 ms
57,628 KB
testcase_02 AC 39 ms
52,000 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 42 ms
57,748 KB
testcase_08 AC 42 ms
57,788 KB
testcase_09 AC 43 ms
58,460 KB
testcase_10 AC 42 ms
58,300 KB
testcase_11 AC 89 ms
58,104 KB
testcase_12 AC 182 ms
57,860 KB
testcase_13 WA -
testcase_14 AC 129 ms
57,184 KB
testcase_15 AC 39 ms
52,164 KB
testcase_16 AC 40 ms
53,476 KB
testcase_17 AC 39 ms
52,220 KB
testcase_18 AC 42 ms
57,920 KB
testcase_19 AC 97 ms
57,084 KB
testcase_20 AC 183 ms
57,000 KB
testcase_21 AC 149 ms
57,464 KB
testcase_22 AC 152 ms
58,204 KB
testcase_23 AC 108 ms
56,788 KB
testcase_24 AC 115 ms
57,936 KB
testcase_25 AC 115 ms
57,856 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())

def make_divisors(n):
    lower_divisors , upper_divisors = [], []
    i = 1
    while i*i <= n:
        if n % i == 0:
            lower_divisors.append(i)
            if i != n // i:
                upper_divisors.append(n//i)
        i += 1
    return lower_divisors + upper_divisors[::-1]

if len(make_divisors(N)) <= 2:
    print('NO')
else:
    print('YES')
0