結果

問題 No.312 置換処理
ユーザー taktak
提出日時 2018-04-21 18:48:19
言語 F#
(F# 4.0)
結果
AC  
実行時間 441 ms / 2,000 ms
コード長 343 bytes
コンパイル時間 16,498 ms
コンパイル使用メモリ 188,932 KB
実行使用メモリ 35,328 KB
最終ジャッジ日時 2024-11-15 12:19:35
合計ジャッジ時間 33,936 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 342 ms
34,788 KB
testcase_01 AC 406 ms
35,008 KB
testcase_02 AC 433 ms
34,788 KB
testcase_03 AC 441 ms
34,940 KB
testcase_04 AC 346 ms
34,788 KB
testcase_05 AC 341 ms
34,112 KB
testcase_06 AC 348 ms
34,668 KB
testcase_07 AC 371 ms
35,212 KB
testcase_08 AC 341 ms
34,792 KB
testcase_09 AC 342 ms
34,396 KB
testcase_10 AC 345 ms
34,368 KB
testcase_11 AC 350 ms
35,092 KB
testcase_12 AC 341 ms
34,800 KB
testcase_13 AC 343 ms
34,924 KB
testcase_14 AC 341 ms
34,924 KB
testcase_15 AC 342 ms
34,676 KB
testcase_16 AC 343 ms
34,928 KB
testcase_17 AC 343 ms
34,148 KB
testcase_18 AC 344 ms
34,036 KB
testcase_19 AC 342 ms
34,784 KB
testcase_20 AC 343 ms
34,356 KB
testcase_21 AC 342 ms
34,780 KB
testcase_22 AC 343 ms
34,124 KB
testcase_23 AC 342 ms
34,376 KB
testcase_24 AC 340 ms
34,120 KB
testcase_25 AC 338 ms
34,796 KB
testcase_26 AC 343 ms
34,240 KB
testcase_27 AC 343 ms
34,796 KB
testcase_28 AC 340 ms
35,044 KB
testcase_29 AC 342 ms
34,784 KB
testcase_30 AC 354 ms
34,800 KB
testcase_31 AC 342 ms
34,352 KB
testcase_32 AC 351 ms
35,328 KB
testcase_33 AC 370 ms
34,188 KB
testcase_34 AC 381 ms
34,420 KB
testcase_35 AC 345 ms
34,968 KB
testcase_36 AC 342 ms
34,676 KB
testcase_37 AC 340 ms
34,248 KB
testcase_38 AC 346 ms
34,360 KB
testcase_39 AC 342 ms
34,796 KB
testcase_40 AC 342 ms
34,116 KB
testcase_41 AC 343 ms
34,792 KB
testcase_42 AC 344 ms
34,792 KB
testcase_43 AC 342 ms
34,284 KB
testcase_44 AC 341 ms
34,284 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (347 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 minDivsor n =
    seq{3L..n}
    |> Seq.takeWhile(fun x -> x*x<=n)
    |> Seq.where(fun x -> n%x=0L)
    |> Seq.tryHead

let n = stdin.ReadLine() |> int64

n
|> minDivsor
|> function
    | Some(x) -> x
    | None    ->
        match n%2L with
        | 0L when(n<>4L)-> n/2L
        | 0L when(n=4L) -> 4L
        | _  -> n
|> printfn "%i"
0