結果

問題 No.889 素数!
ユーザー MaboyMaboy
提出日時 2021-06-27 19:18:09
言語 Swift
(5.10.0)
結果
WA  
実行時間 -
コード長 687 bytes
コンパイル時間 3,259 ms
コンパイル使用メモリ 177,084 KB
実行使用メモリ 15,488 KB
最終ジャッジ日時 2024-06-25 11:55:12
合計ジャッジ時間 5,931 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

import Foundation

func isPrimeNumber(_ n:Int) -> Bool{
    if n != 2 && n % 2 == 0{return false}
    var c = 3
    while c <= 1 + Int(sqrt(Double(n))){
        if n % c == 0{
            return false
        }else{
            c += 2
        }
    }
    return true
}

func isRoot(_ n:Int,_ r:Int = 2) -> Bool{
    let s = Int(pow(Double(n),1.0/Double(r)))
    if Int(pow(Double(s),Double(r))) != n{
        return false
    }
    return true
}

var s = ""
let n = Int(readLine()!)!
if isPrimeNumber(n){
    s = "Sosu!"
}else if isRoot(n){
    s = "Heihosu!"
}else if isRoot(n, 3){
    s = "Ripposu!"
}else if n == 6 || n == 28{
    s = "Kanzensu! "
}else{
    s = String(n)
}
print(s)
0