結果

問題 No.889 素数!
コンテスト
ユーザー na-sh
提出日時 2019-10-10 09:36:22
言語 Python3
(3.14.2 + numpy 2.4.0 + scipy 1.16.3)
結果
WA  
実行時間 -
コード長 554 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 363 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-11-20 16:20:38
合計ジャッジ時間 3,805 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 60 WA * 1
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

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 == 0:
    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