結果

問題 No.889 素数!
ユーザー iwotiwot
提出日時 2020-06-19 18:34:02
言語 F#
(F# 4.0)
結果
AC  
実行時間 337 ms / 2,000 ms
コード長 850 bytes
コンパイル時間 6,538 ms
コンパイル使用メモリ 197,256 KB
実行使用メモリ 35,980 KB
最終ジャッジ日時 2024-07-03 13:32:43
合計ジャッジ時間 22,711 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 69 ms
30,976 KB
testcase_01 AC 327 ms
35,804 KB
testcase_02 AC 69 ms
31,104 KB
testcase_03 AC 329 ms
35,608 KB
testcase_04 AC 330 ms
35,600 KB
testcase_05 AC 68 ms
31,104 KB
testcase_06 AC 72 ms
30,976 KB
testcase_07 AC 68 ms
31,104 KB
testcase_08 AC 69 ms
31,472 KB
testcase_09 AC 69 ms
31,104 KB
testcase_10 AC 69 ms
31,104 KB
testcase_11 AC 68 ms
31,104 KB
testcase_12 AC 70 ms
31,360 KB
testcase_13 AC 328 ms
35,860 KB
testcase_14 AC 67 ms
30,976 KB
testcase_15 AC 333 ms
35,800 KB
testcase_16 AC 67 ms
30,976 KB
testcase_17 AC 334 ms
35,948 KB
testcase_18 AC 73 ms
31,472 KB
testcase_19 AC 326 ms
35,596 KB
testcase_20 AC 72 ms
31,104 KB
testcase_21 AC 328 ms
35,564 KB
testcase_22 AC 331 ms
35,852 KB
testcase_23 AC 329 ms
35,440 KB
testcase_24 AC 70 ms
31,232 KB
testcase_25 AC 329 ms
35,952 KB
testcase_26 AC 70 ms
31,232 KB
testcase_27 AC 328 ms
35,564 KB
testcase_28 AC 69 ms
31,360 KB
testcase_29 AC 70 ms
31,104 KB
testcase_30 AC 69 ms
30,976 KB
testcase_31 AC 327 ms
35,692 KB
testcase_32 AC 73 ms
31,360 KB
testcase_33 AC 328 ms
35,572 KB
testcase_34 AC 331 ms
35,568 KB
testcase_35 AC 321 ms
35,532 KB
testcase_36 AC 328 ms
35,816 KB
testcase_37 AC 71 ms
31,360 KB
testcase_38 AC 337 ms
35,440 KB
testcase_39 AC 325 ms
35,608 KB
testcase_40 AC 327 ms
35,704 KB
testcase_41 AC 71 ms
31,616 KB
testcase_42 AC 333 ms
35,480 KB
testcase_43 AC 70 ms
31,104 KB
testcase_44 AC 323 ms
35,476 KB
testcase_45 AC 330 ms
35,980 KB
testcase_46 AC 324 ms
35,444 KB
testcase_47 AC 69 ms
31,104 KB
testcase_48 AC 326 ms
35,560 KB
testcase_49 AC 68 ms
30,976 KB
testcase_50 AC 331 ms
35,796 KB
testcase_51 AC 328 ms
35,820 KB
testcase_52 AC 330 ms
35,796 KB
testcase_53 AC 73 ms
31,380 KB
testcase_54 AC 331 ms
35,608 KB
testcase_55 AC 326 ms
35,832 KB
testcase_56 AC 329 ms
35,692 KB
testcase_57 AC 332 ms
35,688 KB
testcase_58 AC 337 ms
35,828 KB
testcase_59 AC 72 ms
31,232 KB
testcase_60 AC 337 ms
35,696 KB
testcase_61 AC 71 ms
31,232 KB
testcase_62 AC 335 ms
35,716 KB
testcase_63 AC 336 ms
35,688 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (229 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
  main -> /home/judge/data/code/bin/Release/net8.0/main.dll
  main -> /home/judge/data/code/bin/Release/net8.0/publish/

ソースコード

diff #

let N = stdin.ReadLine().Trim() |> int

let limit = N |> float |> sqrt |> ceil |> int

let ss = [ for i in 2 .. limit do if i*i <= 64 then yield i*i ]

let cs = [ for i in 2 .. limit do if i*i*i <= 64 then yield i*i*i ]

let ns = List.except ss [ 0 .. 64 ] |> List.except cs

let isPrime n =
    let limit = n |> float |> sqrt |> ceil |> int
    let rec check i =
        if i > limit then true elif n % i = 0 then false else check (i+2)
    if n <= 1 then false
    else if n = 2 then true
    else if n % 2 = 0 then false
    else check 3

let prims = [ for i in 2 .. 64 do if isPrime i then yield i ]

let ps = [6; 28]

if List.exists ((=) N) ss then printfn "Heihosu!"
elif List.exists ((=) N) cs then printfn "Ripposu!"
elif List.exists ((=) N) prims then printfn "Sosu!"
elif List.exists ((=) N) ps then printfn "Kanzensu!"
else printfn "%d" N
0