結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 483 ms
43,720 KB
testcase_01 AC 507 ms
59,332 KB
testcase_02 AC 458 ms
43,904 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 470 ms
43,980 KB
testcase_06 AC 458 ms
43,844 KB
testcase_07 WA -
testcase_08 AC 593 ms
44,100 KB
testcase_09 AC 588 ms
59,556 KB
testcase_10 AC 582 ms
43,968 KB
testcase_11 AC 475 ms
43,972 KB
testcase_12 WA -
testcase_13 AC 491 ms
59,204 KB
testcase_14 AC 450 ms
43,848 KB
testcase_15 AC 480 ms
59,340 KB
testcase_16 AC 461 ms
43,848 KB
testcase_17 AC 490 ms
59,300 KB
testcase_18 AC 460 ms
43,968 KB
testcase_19 AC 525 ms
59,592 KB
testcase_20 AC 474 ms
43,856 KB
testcase_21 AC 496 ms
59,300 KB
testcase_22 AC 488 ms
59,332 KB
testcase_23 AC 553 ms
59,488 KB
testcase_24 AC 455 ms
43,972 KB
testcase_25 AC 525 ms
59,296 KB
testcase_26 WA -
testcase_27 AC 497 ms
59,336 KB
testcase_28 AC 460 ms
43,976 KB
testcase_29 AC 488 ms
59,332 KB
testcase_30 AC 457 ms
43,972 KB
testcase_31 AC 481 ms
59,332 KB
testcase_32 AC 455 ms
43,972 KB
testcase_33 AC 496 ms
59,464 KB
testcase_34 AC 473 ms
59,340 KB
testcase_35 AC 482 ms
59,204 KB
testcase_36 AC 481 ms
59,528 KB
testcase_37 AC 465 ms
43,716 KB
testcase_38 AC 500 ms
59,208 KB
testcase_39 AC 489 ms
59,212 KB
testcase_40 AC 482 ms
59,340 KB
testcase_41 AC 472 ms
43,968 KB
testcase_42 AC 481 ms
59,336 KB
testcase_43 AC 468 ms
43,968 KB
testcase_44 AC 498 ms
59,332 KB
testcase_45 AC 510 ms
59,200 KB
testcase_46 AC 493 ms
59,336 KB
testcase_47 AC 471 ms
44,108 KB
testcase_48 AC 484 ms
59,480 KB
testcase_49 WA -
testcase_50 AC 499 ms
59,420 KB
testcase_51 AC 486 ms
59,336 KB
testcase_52 AC 494 ms
59,204 KB
testcase_53 AC 474 ms
43,852 KB
testcase_54 AC 494 ms
59,340 KB
testcase_55 AC 524 ms
59,080 KB
testcase_56 AC 491 ms
59,204 KB
testcase_57 AC 520 ms
59,336 KB
testcase_58 AC 518 ms
59,200 KB
testcase_59 AC 467 ms
43,972 KB
testcase_60 AC 499 ms
59,352 KB
testcase_61 AC 464 ms
43,980 KB
testcase_62 AC 485 ms
59,328 KB
testcase_63 AC 488 ms
59,332 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
import numpy as np

def sosu(n):
    x = [i for i in range(2, math.ceil(n**0.5)) if n % i == 0]
    if len(x) == 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 sosu(n):
    print("Sosu!")
elif heihosu(n):
    print("Heihosu!")
elif ripposu(n):
    print("Ripposu!")
elif kanzensuu(n):
    print("Kanzensu!")
else:
    print(n)
0