結果

問題 No.36 素数が嫌い!
ユーザー lenoleno
提出日時 2017-08-20 12:49:17
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 2,068 ms / 5,000 ms
コード長 833 bytes
コンパイル時間 78 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-06-27 01:15:50
合計ジャッジ時間 27,285 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,165 ms
11,008 KB
testcase_01 AC 1,587 ms
10,880 KB
testcase_02 AC 30 ms
10,880 KB
testcase_03 AC 29 ms
10,880 KB
testcase_04 AC 29 ms
10,880 KB
testcase_05 AC 36 ms
10,880 KB
testcase_06 AC 34 ms
11,008 KB
testcase_07 AC 34 ms
10,880 KB
testcase_08 AC 31 ms
10,880 KB
testcase_09 AC 34 ms
10,880 KB
testcase_10 AC 35 ms
10,880 KB
testcase_11 AC 581 ms
10,880 KB
testcase_12 AC 1,722 ms
10,880 KB
testcase_13 AC 1,733 ms
10,880 KB
testcase_14 AC 1,217 ms
10,880 KB
testcase_15 AC 29 ms
10,880 KB
testcase_16 AC 29 ms
10,880 KB
testcase_17 AC 30 ms
10,880 KB
testcase_18 AC 30 ms
10,880 KB
testcase_19 AC 903 ms
10,880 KB
testcase_20 AC 2,068 ms
10,880 KB
testcase_21 AC 1,783 ms
10,880 KB
testcase_22 AC 1,693 ms
10,880 KB
testcase_23 AC 1,022 ms
10,880 KB
testcase_24 AC 1,142 ms
10,880 KB
testcase_25 AC 1,268 ms
11,008 KB
testcase_26 AC 1,532 ms
10,880 KB
testcase_27 AC 1,841 ms
10,880 KB
testcase_28 AC 1,494 ms
10,880 KB
testcase_29 AC 2,013 ms
10,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def prime_decomposition(N):
    M = N
    i = 2
    table =[]
    while i * i <= N:
        while M % i == 0:
            M /= i
            table.append(int(i))
        i += 1
    if M > 1:
        table.append(int(M))
    return table


def not_prime_table(N):
    table = []
    i = 3
    while i * i <= N:
        if not is_prime_number(i):
            table.append(i)
        i += 2
    return table


def is_prime_number(N):
    if N in [1, 2]:
        return True
    elif N == 0:
        return False
    else:
        i = 3
        while i * i <= N:
            if N % i == 0:
                return False
        return True


if __name__ == '__main__':
    N = int(input())
    li = prime_decomposition(N)
    if len(li) <= 2:
        print('NO')
    else:
        print('YES')
0