結果

問題 No.889 素数!
ユーザー y10y10
提出日時 2020-01-12 20:36:10
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 600 ms / 2,000 ms
コード長 758 bytes
コンパイル時間 186 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 60,884 KB
最終ジャッジ日時 2024-05-07 13:52:58
合計ジャッジ時間 37,352 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 498 ms
44,252 KB
testcase_01 AC 521 ms
60,428 KB
testcase_02 AC 504 ms
44,116 KB
testcase_03 AC 508 ms
44,372 KB
testcase_04 AC 505 ms
44,248 KB
testcase_05 AC 499 ms
44,376 KB
testcase_06 AC 501 ms
44,112 KB
testcase_07 AC 494 ms
44,372 KB
testcase_08 AC 496 ms
44,376 KB
testcase_09 AC 517 ms
60,676 KB
testcase_10 AC 502 ms
44,376 KB
testcase_11 AC 501 ms
44,368 KB
testcase_12 AC 498 ms
44,116 KB
testcase_13 AC 514 ms
60,676 KB
testcase_14 AC 506 ms
44,116 KB
testcase_15 AC 514 ms
60,708 KB
testcase_16 AC 499 ms
44,496 KB
testcase_17 AC 522 ms
60,524 KB
testcase_18 AC 501 ms
44,372 KB
testcase_19 AC 521 ms
60,544 KB
testcase_20 AC 501 ms
44,244 KB
testcase_21 AC 519 ms
60,544 KB
testcase_22 AC 519 ms
60,408 KB
testcase_23 AC 516 ms
60,528 KB
testcase_24 AC 493 ms
44,496 KB
testcase_25 AC 523 ms
60,488 KB
testcase_26 AC 493 ms
44,496 KB
testcase_27 AC 516 ms
60,428 KB
testcase_28 AC 495 ms
44,244 KB
testcase_29 AC 522 ms
60,532 KB
testcase_30 AC 503 ms
44,504 KB
testcase_31 AC 528 ms
60,528 KB
testcase_32 AC 496 ms
44,244 KB
testcase_33 AC 521 ms
60,772 KB
testcase_34 AC 523 ms
60,464 KB
testcase_35 AC 522 ms
60,816 KB
testcase_36 AC 600 ms
60,528 KB
testcase_37 AC 496 ms
44,496 KB
testcase_38 AC 519 ms
60,412 KB
testcase_39 AC 527 ms
60,432 KB
testcase_40 AC 526 ms
60,588 KB
testcase_41 AC 500 ms
44,244 KB
testcase_42 AC 517 ms
60,820 KB
testcase_43 AC 505 ms
44,244 KB
testcase_44 AC 520 ms
60,468 KB
testcase_45 AC 514 ms
60,472 KB
testcase_46 AC 517 ms
60,652 KB
testcase_47 AC 499 ms
44,112 KB
testcase_48 AC 518 ms
60,884 KB
testcase_49 AC 497 ms
44,120 KB
testcase_50 AC 520 ms
60,464 KB
testcase_51 AC 530 ms
60,820 KB
testcase_52 AC 524 ms
60,468 KB
testcase_53 AC 505 ms
44,244 KB
testcase_54 AC 524 ms
60,744 KB
testcase_55 AC 521 ms
60,488 KB
testcase_56 AC 524 ms
60,712 KB
testcase_57 AC 520 ms
60,468 KB
testcase_58 AC 519 ms
60,432 KB
testcase_59 AC 507 ms
44,244 KB
testcase_60 AC 521 ms
60,532 KB
testcase_61 AC 500 ms
44,372 KB
testcase_62 AC 521 ms
60,588 KB
testcase_63 AC 514 ms
60,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
import numpy as np

def sosu(n):
    x = np.arange(2, int(n**0.5)+1)
    if len(x[n%x==0]) == 0:
        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