結果

問題 No.889 素数!
ユーザー na-sh
提出日時 2019-10-10 09:36:49
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 32 ms / 2,000 ms
コード長 553 bytes
コンパイル時間 148 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-11-20 16:21:40
合計ジャッジ時間 3,851 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 61
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())


def is_sosu():
    for i in range(2, N):
        if N % i == 0:
            return False
    else:
        return True


def is_heihou():
    x = N ** (1/2)
    return x == int(x)


def is_rippou():
    x = N ** (1/3)
    return x == int(x)


def is_kanzensu():
    x = [a for a in range(1, N) if N % a == 0]
    return sum(x) == N


if N < 2:
    print(N)
elif is_sosu():
    print('Sosu!')
elif is_heihou():
    print('Heihosu!')
elif is_rippou():
    print('Ripposu!')
elif is_kanzensu():
    print('Kanzensu!')
else:
    print(N)
0