結果

問題 No.889 素数!
ユーザー dangodango
提出日時 2023-06-07 21:18:53
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 803 bytes
コンパイル時間 315 ms
コンパイル使用メモリ 82,332 KB
実行使用メモリ 54,252 KB
最終ジャッジ日時 2024-06-09 13:40:54
合計ジャッジ時間 3,807 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,720 KB
testcase_01 AC 32 ms
52,876 KB
testcase_02 AC 31 ms
52,952 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 33 ms
52,516 KB
testcase_06 AC 32 ms
53,152 KB
testcase_07 AC 32 ms
53,056 KB
testcase_08 AC 32 ms
53,324 KB
testcase_09 WA -
testcase_10 AC 36 ms
52,736 KB
testcase_11 AC 32 ms
53,168 KB
testcase_12 AC 33 ms
53,676 KB
testcase_13 AC 35 ms
52,456 KB
testcase_14 AC 37 ms
54,064 KB
testcase_15 AC 33 ms
52,688 KB
testcase_16 AC 33 ms
52,672 KB
testcase_17 AC 32 ms
53,180 KB
testcase_18 AC 32 ms
52,504 KB
testcase_19 AC 31 ms
53,972 KB
testcase_20 AC 32 ms
52,768 KB
testcase_21 AC 32 ms
52,872 KB
testcase_22 AC 32 ms
52,800 KB
testcase_23 AC 33 ms
53,388 KB
testcase_24 AC 33 ms
52,332 KB
testcase_25 AC 35 ms
53,576 KB
testcase_26 AC 35 ms
52,444 KB
testcase_27 AC 36 ms
52,564 KB
testcase_28 AC 34 ms
52,872 KB
testcase_29 WA -
testcase_30 AC 34 ms
52,732 KB
testcase_31 AC 32 ms
53,372 KB
testcase_32 AC 35 ms
53,136 KB
testcase_33 AC 36 ms
53,128 KB
testcase_34 AC 32 ms
53,092 KB
testcase_35 AC 32 ms
52,324 KB
testcase_36 AC 31 ms
53,064 KB
testcase_37 AC 31 ms
52,672 KB
testcase_38 AC 33 ms
52,200 KB
testcase_39 AC 32 ms
53,436 KB
testcase_40 AC 32 ms
54,072 KB
testcase_41 AC 31 ms
53,288 KB
testcase_42 AC 33 ms
52,256 KB
testcase_43 AC 32 ms
53,508 KB
testcase_44 AC 33 ms
52,524 KB
testcase_45 AC 33 ms
53,424 KB
testcase_46 AC 33 ms
53,000 KB
testcase_47 AC 32 ms
52,344 KB
testcase_48 AC 34 ms
52,764 KB
testcase_49 AC 32 ms
53,188 KB
testcase_50 AC 32 ms
53,072 KB
testcase_51 AC 32 ms
53,312 KB
testcase_52 AC 31 ms
53,772 KB
testcase_53 AC 32 ms
53,228 KB
testcase_54 AC 32 ms
52,808 KB
testcase_55 AC 34 ms
53,328 KB
testcase_56 AC 33 ms
53,064 KB
testcase_57 AC 32 ms
53,320 KB
testcase_58 AC 32 ms
53,208 KB
testcase_59 AC 33 ms
53,612 KB
testcase_60 AC 32 ms
53,276 KB
testcase_61 AC 33 ms
52,720 KB
testcase_62 AC 32 ms
53,664 KB
testcase_63 AC 32 ms
53,224 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def ISPRIME(N):
    if N < 2:
        return False
    elif N == 2:
        return True
    elif N % 2 == 0:
        return False
    else:
        for i in range(3, int(N ** 0.5) + 1):
            if N % i == 0:
                return False
    return True

def ISSQUARE(N):
    return float(N ** 0.5).is_integer()

def ISCUBIC(N):
    return float(N ** (1 / 3)).is_integer()

def ISPERFECT(N):
    divisors = []
    for i in range(1, N + 1):
        if N % i == 0:
            divisors.append(N)
            divisors.append(int(N / i))
    return sum(list(set(divisors))[0:len(list(set(divisors))) - 1]) == N

N = int(input())
if ISPRIME(N):
    print("Sosu!")
elif ISSQUARE(N):
    print("Heihosu!")
elif ISCUBIC(N):
    print("Ripposu!")
elif ISPERFECT(N):
    print("Kanzensu!")
else:
    print(N)
0