結果

問題 No.889 素数!
ユーザー iwotiwot
提出日時 2020-06-19 18:00:25
言語 F#
(F# 4.0)
結果
AC  
実行時間 341 ms / 2,000 ms
コード長 1,053 bytes
コンパイル時間 14,168 ms
コンパイル使用メモリ 189,536 KB
実行使用メモリ 36,160 KB
最終ジャッジ日時 2024-07-03 13:29:48
合計ジャッジ時間 29,488 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 64 ms
30,336 KB
testcase_01 AC 320 ms
34,516 KB
testcase_02 AC 65 ms
30,464 KB
testcase_03 AC 327 ms
34,740 KB
testcase_04 AC 326 ms
35,756 KB
testcase_05 AC 64 ms
29,952 KB
testcase_06 AC 63 ms
30,328 KB
testcase_07 AC 65 ms
30,336 KB
testcase_08 AC 63 ms
30,336 KB
testcase_09 AC 65 ms
30,336 KB
testcase_10 AC 63 ms
30,080 KB
testcase_11 AC 64 ms
30,592 KB
testcase_12 AC 62 ms
30,208 KB
testcase_13 AC 328 ms
34,588 KB
testcase_14 AC 63 ms
30,336 KB
testcase_15 AC 328 ms
34,576 KB
testcase_16 AC 65 ms
30,208 KB
testcase_17 AC 329 ms
34,960 KB
testcase_18 AC 65 ms
30,720 KB
testcase_19 AC 333 ms
34,584 KB
testcase_20 AC 66 ms
30,192 KB
testcase_21 AC 329 ms
34,704 KB
testcase_22 AC 335 ms
34,412 KB
testcase_23 AC 326 ms
33,808 KB
testcase_24 AC 64 ms
30,208 KB
testcase_25 AC 334 ms
34,832 KB
testcase_26 AC 66 ms
30,336 KB
testcase_27 AC 323 ms
34,684 KB
testcase_28 AC 66 ms
30,208 KB
testcase_29 AC 64 ms
30,208 KB
testcase_30 AC 63 ms
30,336 KB
testcase_31 AC 339 ms
34,576 KB
testcase_32 AC 65 ms
30,080 KB
testcase_33 AC 327 ms
34,708 KB
testcase_34 AC 323 ms
36,160 KB
testcase_35 AC 329 ms
34,708 KB
testcase_36 AC 327 ms
33,940 KB
testcase_37 AC 63 ms
30,208 KB
testcase_38 AC 321 ms
34,836 KB
testcase_39 AC 321 ms
34,400 KB
testcase_40 AC 327 ms
34,960 KB
testcase_41 AC 61 ms
30,208 KB
testcase_42 AC 321 ms
34,836 KB
testcase_43 AC 63 ms
30,328 KB
testcase_44 AC 319 ms
34,704 KB
testcase_45 AC 321 ms
34,120 KB
testcase_46 AC 341 ms
34,840 KB
testcase_47 AC 62 ms
30,208 KB
testcase_48 AC 323 ms
34,580 KB
testcase_49 AC 62 ms
30,336 KB
testcase_50 AC 326 ms
34,060 KB
testcase_51 AC 325 ms
33,988 KB
testcase_52 AC 328 ms
34,812 KB
testcase_53 AC 61 ms
30,336 KB
testcase_54 AC 324 ms
34,708 KB
testcase_55 AC 318 ms
34,916 KB
testcase_56 AC 324 ms
34,836 KB
testcase_57 AC 330 ms
34,784 KB
testcase_58 AC 329 ms
34,548 KB
testcase_59 AC 64 ms
30,080 KB
testcase_60 AC 328 ms
34,580 KB
testcase_61 AC 70 ms
30,464 KB
testcase_62 AC 333 ms
34,704 KB
testcase_63 AC 325 ms
34,676 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (333 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 #

type Response = Sosu | Heihousu | Rippousu | Kanzensu | Other

let checker n =
    let limit = n |> float |> sqrt |> ceil |> int
    let rec check i =
        if i > limit then
            Sosu
        elif n % i = 0 then
            let mutable j = i
            let mutable result = Other
            while j <= limit do
                if j*j = n then result <- Heihousu elif j*j*j = n then result <- Rippousu
                j <- j+ 1
            result
        else check (i+1)
    
    let isKanzensu n =
        if n%2 <> 0 then false
        else
            let sum = [ for i in 1..(n-1) do if n % i = 0 then yield i ] |> List.sum
            sum = n
    
    if n <= 1 then Other
    else if n = 2 then Sosu
    else if isKanzensu n then Kanzensu
    else check 2

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

match checker N with
    | Response.Sosu -> printfn "Sosu!"
    | Response.Heihousu -> printfn "Heihosu!"
    | Response.Rippousu -> printfn "Ripposu!"
    | Response.Kanzensu -> printfn "Kanzensu!"
    | Response.Other -> printfn "%d" N
0