結果

問題 No.889 素数!
ユーザー s_shoheis_shohei
提出日時 2020-04-13 23:26:54
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 620 bytes
コンパイル時間 173 ms
コンパイル使用メモリ 81,700 KB
実行使用メモリ 66,192 KB
最終ジャッジ日時 2024-04-08 11:33:55
合計ジャッジ時間 5,724 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 AC 36 ms
53,460 KB
testcase_03 AC 36 ms
53,460 KB
testcase_04 AC 37 ms
53,460 KB
testcase_05 RE -
testcase_06 RE -
testcase_07 AC 36 ms
53,460 KB
testcase_08 RE -
testcase_09 AC 37 ms
53,716 KB
testcase_10 RE -
testcase_11 AC 36 ms
53,460 KB
testcase_12 AC 37 ms
53,460 KB
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 AC 36 ms
53,460 KB
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 RE -
testcase_26 AC 37 ms
53,460 KB
testcase_27 RE -
testcase_28 AC 36 ms
53,460 KB
testcase_29 AC 36 ms
53,716 KB
testcase_30 RE -
testcase_31 RE -
testcase_32 RE -
testcase_33 RE -
testcase_34 RE -
testcase_35 RE -
testcase_36 RE -
testcase_37 RE -
testcase_38 RE -
testcase_39 RE -
testcase_40 RE -
testcase_41 RE -
testcase_42 RE -
testcase_43 RE -
testcase_44 RE -
testcase_45 RE -
testcase_46 RE -
testcase_47 RE -
testcase_48 RE -
testcase_49 AC 36 ms
53,460 KB
testcase_50 RE -
testcase_51 RE -
testcase_52 RE -
testcase_53 RE -
testcase_54 RE -
testcase_55 RE -
testcase_56 RE -
testcase_57 RE -
testcase_58 RE -
testcase_59 RE -
testcase_60 RE -
testcase_61 RE -
testcase_62 RE -
testcase_63 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())

def m_div(n):
    divisors = []
    for i in range(1, int(n**0.5)+1):
        if n % i == 0:
            divisors.append(i)
            if i != n // i:
                divisors.append(n//i)
    return sum(divisors)

def is_p(n):
    if n == 1: return False
    for k in range(2, int(math.sqrt(n)) + 1):
        if n % k == 0:
            return False
    return True

if n==0:
    print(0)
elif n==8 or n==27:
    print("Ripposu!")
elif n==4 or n==9 or n==16 or n==25 or n==36 or  n==49:
    print("Heihosu!")
elif m_div(n)==2*n:
    print("Kanzensu!")
elif is_p(n):
    print("Sosu!")
else:
    print(n)
0