結果

問題 No.36 素数が嫌い!
ユーザー mitsushinomitsushino
提出日時 2018-01-12 14:33:43
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 488 bytes
コンパイル時間 75 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 11,008 KB
最終ジャッジ日時 2024-06-06 09:53:06
合計ジャッジ時間 12,007 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 586 ms
10,880 KB
testcase_01 AC 73 ms
10,880 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 28 ms
10,752 KB
testcase_09 AC 28 ms
11,008 KB
testcase_10 AC 29 ms
10,880 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 36 ms
10,752 KB
testcase_15 AC 31 ms
10,880 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 29 ms
10,752 KB
testcase_19 AC 130 ms
10,880 KB
testcase_20 AC 108 ms
11,008 KB
testcase_21 AC 364 ms
10,752 KB
testcase_22 AC 64 ms
10,752 KB
testcase_23 AC 43 ms
11,008 KB
testcase_24 AC 404 ms
10,880 KB
testcase_25 AC 456 ms
10,880 KB
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

# -*- coding: utf-8 -*-
import math


def prime_factorization(N):
    i = 2
    count = 0
    while i <= math.sqrt(N):
        if N % i == 0:
            N //= i
            count += 1
            if count > 2:
                print('YES')
                return
        else:
            i += 1
    if N > 1:
        count += 1
        if count > 2:
            print('YES')
            return
    print('No')


if __name__ == '__main__':
    N = int(input())
    prime_factorization(N)
0