結果

問題 No.889 素数!
ユーザー y10y10
提出日時 2020-01-12 20:22:57
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 573 ms / 2,000 ms
コード長 739 bytes
コンパイル時間 241 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 59,972 KB
最終ジャッジ日時 2024-05-07 13:09:57
合計ジャッジ時間 35,290 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 502 ms
44,236 KB
testcase_01 AC 522 ms
59,484 KB
testcase_02 AC 503 ms
44,100 KB
testcase_03 AC 500 ms
44,116 KB
testcase_04 AC 495 ms
44,236 KB
testcase_05 AC 496 ms
44,168 KB
testcase_06 AC 498 ms
44,100 KB
testcase_07 AC 503 ms
44,108 KB
testcase_08 AC 502 ms
44,488 KB
testcase_09 AC 513 ms
59,620 KB
testcase_10 AC 495 ms
44,484 KB
testcase_11 AC 498 ms
44,368 KB
testcase_12 AC 495 ms
44,236 KB
testcase_13 AC 514 ms
59,424 KB
testcase_14 AC 495 ms
44,116 KB
testcase_15 AC 517 ms
59,552 KB
testcase_16 AC 495 ms
44,360 KB
testcase_17 AC 514 ms
59,452 KB
testcase_18 AC 500 ms
44,108 KB
testcase_19 AC 520 ms
59,616 KB
testcase_20 AC 500 ms
44,236 KB
testcase_21 AC 522 ms
59,836 KB
testcase_22 AC 516 ms
59,556 KB
testcase_23 AC 515 ms
59,448 KB
testcase_24 AC 497 ms
44,104 KB
testcase_25 AC 520 ms
59,768 KB
testcase_26 AC 501 ms
44,236 KB
testcase_27 AC 518 ms
59,560 KB
testcase_28 AC 495 ms
44,104 KB
testcase_29 AC 514 ms
59,556 KB
testcase_30 AC 504 ms
44,116 KB
testcase_31 AC 523 ms
59,616 KB
testcase_32 AC 500 ms
44,364 KB
testcase_33 AC 516 ms
59,556 KB
testcase_34 AC 516 ms
59,908 KB
testcase_35 AC 517 ms
59,560 KB
testcase_36 AC 522 ms
59,492 KB
testcase_37 AC 502 ms
44,364 KB
testcase_38 AC 524 ms
59,556 KB
testcase_39 AC 515 ms
59,556 KB
testcase_40 AC 518 ms
59,456 KB
testcase_41 AC 500 ms
44,104 KB
testcase_42 AC 513 ms
59,540 KB
testcase_43 AC 495 ms
44,232 KB
testcase_44 AC 519 ms
59,732 KB
testcase_45 AC 510 ms
59,616 KB
testcase_46 AC 512 ms
59,676 KB
testcase_47 AC 495 ms
44,104 KB
testcase_48 AC 522 ms
59,676 KB
testcase_49 AC 495 ms
44,360 KB
testcase_50 AC 510 ms
59,556 KB
testcase_51 AC 518 ms
59,496 KB
testcase_52 AC 515 ms
59,436 KB
testcase_53 AC 498 ms
44,488 KB
testcase_54 AC 511 ms
59,516 KB
testcase_55 AC 512 ms
59,676 KB
testcase_56 AC 511 ms
59,736 KB
testcase_57 AC 525 ms
59,736 KB
testcase_58 AC 518 ms
59,620 KB
testcase_59 AC 504 ms
44,360 KB
testcase_60 AC 520 ms
59,504 KB
testcase_61 AC 499 ms
44,488 KB
testcase_62 AC 518 ms
59,548 KB
testcase_63 AC 573 ms
59,972 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
import numpy as np

def sosu(n):
    if all(n % i != 0 for i in range(2, n)):
        return True
    else:
        return False

def heihosu(n):
    if str(n**0.5)[-1] == "0":
        return True
    else:
        return False

def ripposu(n):
    if str(n**(1/3))[-1] == "0":
        return True
    else:
        return False

def kanzensuu(n):
    U = 10**6 + 100
    x = np.arange(1,U,dtype=np.int64)
    div = x[n%x==0]
    if n == sum(div[:-1]):
        return True
    else:
        return False

n = int(input())
if n == 0 or n == 1:
    print(n)
elif sosu(n):
    print("Sosu!")
elif heihosu(n):
    print("Heihosu!")
elif ripposu(n):
    print("Ripposu!")
elif kanzensuu(n):
    print("Kanzensu!")
else:
    print(n)
0