結果

問題 No.889 素数!
ユーザー y10y10
提出日時 2020-01-12 20:21:53
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 737 bytes
コンパイル時間 138 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 59,596 KB
最終ジャッジ日時 2024-05-07 13:07:23
合計ジャッジ時間 32,165 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 478 ms
43,976 KB
testcase_01 AC 491 ms
59,136 KB
testcase_02 AC 455 ms
43,984 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 456 ms
43,848 KB
testcase_06 AC 448 ms
43,976 KB
testcase_07 AC 446 ms
44,108 KB
testcase_08 AC 450 ms
44,100 KB
testcase_09 AC 481 ms
59,340 KB
testcase_10 AC 452 ms
43,980 KB
testcase_11 AC 455 ms
44,108 KB
testcase_12 AC 444 ms
44,108 KB
testcase_13 AC 473 ms
59,212 KB
testcase_14 AC 452 ms
43,976 KB
testcase_15 AC 512 ms
59,340 KB
testcase_16 AC 454 ms
43,844 KB
testcase_17 AC 489 ms
59,340 KB
testcase_18 AC 449 ms
44,108 KB
testcase_19 AC 474 ms
59,336 KB
testcase_20 AC 449 ms
44,108 KB
testcase_21 AC 470 ms
59,452 KB
testcase_22 AC 487 ms
59,208 KB
testcase_23 AC 481 ms
59,520 KB
testcase_24 AC 460 ms
44,104 KB
testcase_25 AC 471 ms
59,592 KB
testcase_26 AC 464 ms
43,980 KB
testcase_27 AC 493 ms
59,432 KB
testcase_28 AC 463 ms
43,980 KB
testcase_29 AC 482 ms
59,332 KB
testcase_30 AC 473 ms
43,844 KB
testcase_31 AC 480 ms
59,084 KB
testcase_32 AC 454 ms
44,032 KB
testcase_33 AC 475 ms
59,336 KB
testcase_34 AC 490 ms
59,596 KB
testcase_35 AC 479 ms
59,592 KB
testcase_36 AC 486 ms
59,588 KB
testcase_37 AC 455 ms
44,108 KB
testcase_38 AC 482 ms
59,212 KB
testcase_39 AC 470 ms
59,592 KB
testcase_40 AC 496 ms
59,344 KB
testcase_41 AC 454 ms
43,984 KB
testcase_42 AC 478 ms
59,348 KB
testcase_43 AC 468 ms
43,976 KB
testcase_44 AC 480 ms
59,464 KB
testcase_45 AC 480 ms
59,468 KB
testcase_46 AC 477 ms
59,552 KB
testcase_47 AC 456 ms
44,192 KB
testcase_48 AC 476 ms
59,208 KB
testcase_49 AC 447 ms
43,852 KB
testcase_50 AC 474 ms
59,464 KB
testcase_51 AC 472 ms
59,208 KB
testcase_52 AC 497 ms
59,340 KB
testcase_53 AC 449 ms
43,980 KB
testcase_54 AC 477 ms
59,468 KB
testcase_55 AC 474 ms
59,340 KB
testcase_56 AC 476 ms
59,588 KB
testcase_57 AC 469 ms
59,212 KB
testcase_58 AC 468 ms
59,336 KB
testcase_59 AC 455 ms
44,108 KB
testcase_60 AC 488 ms
59,204 KB
testcase_61 AC 450 ms
44,104 KB
testcase_62 AC 482 ms
59,332 KB
testcase_63 AC 470 ms
59,468 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)
if sosu(n):
    print("Sosu!")
elif heihosu(n):
    print("Heihosu!")
elif ripposu(n):
    print("Ripposu!")
elif kanzensuu(n):
    print("Kanzensu!")
else:
    print(n)
0