結果

問題 No.889 素数!
ユーザー tails1434tails1434
提出日時 2019-12-31 20:55:38
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,025 bytes
コンパイル時間 492 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 52,608 KB
最終ジャッジ日時 2024-11-20 14:23:26
合計ジャッジ時間 4,618 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

def isprime(N):
    if N == 1:
        return False
    for i in range(2, int(N ** 0.5) + 1):
        if N % i == 0:
            return False
    return True

def issquare(N):
    if N == (N ** 0.5) * (N ** 0.5):
        return True
    return False

def iscubic(N):
    for i in range(int(N ** 0.5) + 1):
        if i ** 3 == N:
            return True

    return False

def isperfect(N):
    ass = []
    for i in range(1, int(N ** 0.5) + 1):
        if N % i == 0:
            ass.append(i)
            if i ** 2 == N:
                continue
            ass.append(N // i)

    tmp = 0
    for a in ass:
        tmp += a
    
    if N == tmp:
        return True

    return False




def main():
    N = int(input())
    if isprime(N):
        print('Sosu!')
        exit()
    if issquare(N):
        print('Heihosu!')
        exit()
    if iscubic(N):
        print('Ripposu!')
        exit()
    if isperfect(N):
        print('Kanzensu!')
        exit()

    print(N)

    



if __name__ == "__main__":
    main()
0