結果

問題 No.889 素数!
ユーザー iwotiwot
提出日時 2020-06-19 18:26:24
言語 F#
(F# 4.0)
結果
WA  
実行時間 -
コード長 844 bytes
コンパイル時間 8,397 ms
コンパイル使用メモリ 197,676 KB
実行使用メモリ 37,856 KB
最終ジャッジ日時 2024-07-03 13:31:05
合計ジャッジ時間 23,692 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
31,360 KB
testcase_01 AC 333 ms
35,860 KB
testcase_02 AC 71 ms
30,976 KB
testcase_03 AC 336 ms
35,172 KB
testcase_04 WA -
testcase_05 AC 72 ms
31,472 KB
testcase_06 AC 73 ms
31,488 KB
testcase_07 AC 72 ms
31,076 KB
testcase_08 AC 72 ms
31,360 KB
testcase_09 AC 73 ms
31,096 KB
testcase_10 AC 73 ms
33,412 KB
testcase_11 AC 71 ms
31,228 KB
testcase_12 AC 71 ms
31,344 KB
testcase_13 AC 338 ms
35,728 KB
testcase_14 AC 73 ms
31,232 KB
testcase_15 AC 337 ms
35,820 KB
testcase_16 AC 73 ms
31,104 KB
testcase_17 AC 334 ms
35,732 KB
testcase_18 AC 72 ms
31,344 KB
testcase_19 AC 334 ms
35,468 KB
testcase_20 AC 70 ms
31,104 KB
testcase_21 AC 334 ms
35,680 KB
testcase_22 AC 333 ms
35,560 KB
testcase_23 AC 330 ms
35,472 KB
testcase_24 AC 71 ms
30,972 KB
testcase_25 AC 327 ms
35,596 KB
testcase_26 AC 72 ms
33,500 KB
testcase_27 AC 338 ms
35,956 KB
testcase_28 AC 71 ms
31,104 KB
testcase_29 AC 73 ms
31,360 KB
testcase_30 AC 71 ms
31,360 KB
testcase_31 AC 335 ms
37,856 KB
testcase_32 AC 71 ms
31,344 KB
testcase_33 AC 335 ms
35,728 KB
testcase_34 AC 334 ms
35,572 KB
testcase_35 AC 335 ms
35,828 KB
testcase_36 AC 332 ms
35,564 KB
testcase_37 AC 73 ms
31,360 KB
testcase_38 AC 346 ms
35,568 KB
testcase_39 AC 340 ms
35,692 KB
testcase_40 AC 341 ms
35,696 KB
testcase_41 AC 73 ms
33,292 KB
testcase_42 AC 338 ms
35,428 KB
testcase_43 AC 70 ms
31,360 KB
testcase_44 AC 335 ms
35,856 KB
testcase_45 AC 332 ms
36,116 KB
testcase_46 AC 333 ms
35,852 KB
testcase_47 AC 72 ms
31,360 KB
testcase_48 AC 336 ms
35,568 KB
testcase_49 AC 72 ms
31,360 KB
testcase_50 AC 326 ms
35,680 KB
testcase_51 AC 330 ms
35,564 KB
testcase_52 AC 333 ms
35,824 KB
testcase_53 AC 72 ms
31,488 KB
testcase_54 AC 336 ms
35,472 KB
testcase_55 AC 332 ms
35,568 KB
testcase_56 AC 327 ms
35,728 KB
testcase_57 AC 333 ms
35,736 KB
testcase_58 AC 330 ms
35,984 KB
testcase_59 AC 68 ms
31,344 KB
testcase_60 AC 333 ms
35,468 KB
testcase_61 AC 72 ms
31,360 KB
testcase_62 AC 334 ms
35,564 KB
testcase_63 AC 335 ms
35,824 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (245 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 1 .. limit do if i*i <= 64 then yield i*i ]

let cs = [ for i in 1 .. 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 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