結果

問題 No.312 置換処理
ユーザー taktak
提出日時 2018-04-21 18:42:46
言語 F#
(F# 4.0)
結果
WA  
実行時間 -
コード長 284 bytes
コンパイル時間 7,225 ms
コンパイル使用メモリ 189,380 KB
実行使用メモリ 35,212 KB
最終ジャッジ日時 2024-06-27 05:26:58
合計ジャッジ時間 24,554 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 337 ms
34,668 KB
testcase_01 AC 348 ms
34,272 KB
testcase_02 AC 350 ms
34,928 KB
testcase_03 AC 351 ms
35,080 KB
testcase_04 AC 338 ms
34,640 KB
testcase_05 AC 336 ms
34,104 KB
testcase_06 AC 339 ms
34,812 KB
testcase_07 AC 347 ms
35,212 KB
testcase_08 AC 335 ms
34,916 KB
testcase_09 AC 336 ms
34,632 KB
testcase_10 AC 339 ms
34,884 KB
testcase_11 AC 341 ms
34,956 KB
testcase_12 AC 339 ms
34,788 KB
testcase_13 AC 336 ms
34,368 KB
testcase_14 AC 336 ms
34,760 KB
testcase_15 AC 339 ms
34,524 KB
testcase_16 AC 336 ms
34,780 KB
testcase_17 AC 338 ms
34,512 KB
testcase_18 AC 340 ms
34,916 KB
testcase_19 AC 337 ms
34,528 KB
testcase_20 AC 336 ms
34,144 KB
testcase_21 AC 339 ms
34,640 KB
testcase_22 AC 337 ms
34,656 KB
testcase_23 WA -
testcase_24 AC 335 ms
34,784 KB
testcase_25 AC 335 ms
34,228 KB
testcase_26 AC 335 ms
34,104 KB
testcase_27 AC 336 ms
34,780 KB
testcase_28 AC 338 ms
34,916 KB
testcase_29 AC 337 ms
34,052 KB
testcase_30 AC 339 ms
34,660 KB
testcase_31 AC 339 ms
34,904 KB
testcase_32 AC 342 ms
34,948 KB
testcase_33 AC 342 ms
35,084 KB
testcase_34 AC 341 ms
35,048 KB
testcase_35 AC 339 ms
34,956 KB
testcase_36 AC 335 ms
34,652 KB
testcase_37 AC 331 ms
34,656 KB
testcase_38 AC 337 ms
34,520 KB
testcase_39 AC 334 ms
34,904 KB
testcase_40 AC 336 ms
34,792 KB
testcase_41 AC 341 ms
34,016 KB
testcase_42 AC 333 ms
34,776 KB
testcase_43 AC 338 ms
34,784 KB
testcase_44 AC 335 ms
34,224 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (240 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|>float|>sqrt|>int64}
    |> 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 -> n/2L
        | _  -> n
|> printfn "%i"
0