結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,320 KB
testcase_01 AC 35 ms
52,628 KB
testcase_02 AC 34 ms
52,608 KB
testcase_03 AC 34 ms
53,728 KB
testcase_04 AC 33 ms
52,644 KB
testcase_05 AC 33 ms
52,272 KB
testcase_06 AC 34 ms
52,400 KB
testcase_07 AC 34 ms
52,548 KB
testcase_08 AC 35 ms
52,512 KB
testcase_09 WA -
testcase_10 AC 33 ms
52,780 KB
testcase_11 AC 33 ms
53,016 KB
testcase_12 AC 34 ms
53,436 KB
testcase_13 AC 33 ms
52,396 KB
testcase_14 AC 37 ms
52,864 KB
testcase_15 AC 36 ms
52,540 KB
testcase_16 AC 32 ms
53,972 KB
testcase_17 AC 34 ms
52,740 KB
testcase_18 AC 35 ms
53,120 KB
testcase_19 AC 36 ms
52,836 KB
testcase_20 AC 36 ms
52,656 KB
testcase_21 AC 37 ms
53,044 KB
testcase_22 AC 37 ms
52,660 KB
testcase_23 AC 36 ms
52,696 KB
testcase_24 AC 35 ms
53,576 KB
testcase_25 AC 36 ms
52,592 KB
testcase_26 AC 34 ms
53,368 KB
testcase_27 AC 34 ms
52,964 KB
testcase_28 AC 34 ms
53,176 KB
testcase_29 WA -
testcase_30 AC 34 ms
53,688 KB
testcase_31 AC 36 ms
54,184 KB
testcase_32 AC 34 ms
53,740 KB
testcase_33 AC 36 ms
53,680 KB
testcase_34 AC 35 ms
53,396 KB
testcase_35 AC 35 ms
52,556 KB
testcase_36 AC 34 ms
53,676 KB
testcase_37 AC 34 ms
52,628 KB
testcase_38 AC 31 ms
52,796 KB
testcase_39 AC 31 ms
53,000 KB
testcase_40 AC 32 ms
52,528 KB
testcase_41 AC 33 ms
52,956 KB
testcase_42 AC 31 ms
53,228 KB
testcase_43 AC 32 ms
52,716 KB
testcase_44 AC 32 ms
53,552 KB
testcase_45 AC 33 ms
53,820 KB
testcase_46 AC 31 ms
53,240 KB
testcase_47 AC 32 ms
52,680 KB
testcase_48 AC 31 ms
53,116 KB
testcase_49 AC 32 ms
54,364 KB
testcase_50 AC 33 ms
53,028 KB
testcase_51 AC 32 ms
52,592 KB
testcase_52 AC 34 ms
53,340 KB
testcase_53 AC 38 ms
52,996 KB
testcase_54 AC 34 ms
52,788 KB
testcase_55 AC 33 ms
52,604 KB
testcase_56 AC 33 ms
53,024 KB
testcase_57 AC 32 ms
52,736 KB
testcase_58 AC 33 ms
53,152 KB
testcase_59 AC 35 ms
53,084 KB
testcase_60 AC 36 ms
52,448 KB
testcase_61 AC 35 ms
52,620 KB
testcase_62 AC 35 ms
53,744 KB
testcase_63 AC 35 ms
54,172 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 N == 0 or N == 1:
  print(N)
elif ISPRIME(N):
    print("Sosu!")
elif ISSQUARE(N):
    print("Heihosu!")
elif ISCUBIC(N):
    print("Ripposu!")
elif ISPERFECT(N):
    print("Kanzensu!")
else:
    print(N)
0