結果

問題 No.500 階乗電卓
ユーザー Nobita GomuNobita Gomu
提出日時 2017-09-26 22:01:51
言語 F#
(F# 4.0)
結果
RE  
実行時間 -
コード長 402 bytes
コンパイル時間 7,302 ms
コンパイル使用メモリ 187,384 KB
実行使用メモリ 39,572 KB
最終ジャッジ日時 2024-04-27 14:20:27
合計ジャッジ時間 14,205 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 RE -
testcase_02 RE -
testcase_03 RE -
testcase_04 AC 76 ms
31,360 KB
testcase_05 AC 73 ms
31,488 KB
testcase_06 AC 69 ms
31,616 KB
testcase_07 AC 74 ms
31,104 KB
testcase_08 AC 74 ms
31,360 KB
testcase_09 AC 75 ms
31,232 KB
testcase_10 AC 74 ms
31,360 KB
testcase_11 AC 75 ms
31,360 KB
testcase_12 AC 75 ms
31,232 KB
testcase_13 AC 74 ms
31,476 KB
testcase_14 AC 81 ms
31,616 KB
testcase_15 AC 82 ms
31,232 KB
testcase_16 AC 69 ms
31,104 KB
testcase_17 AC 70 ms
31,232 KB
testcase_18 AC 72 ms
31,232 KB
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (253 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 factorial n =
    if n >= 50 then
        bigint.Zero
    else
        seq { 1..n } |> Seq.map bigint |> Seq.reduce (*)

let fmt (n:bigint) =
    if n = bigint.Zero then
        "000000000000"
    else
        let s = string n
        match String.length s with
        | i when i > 12 -> s.[i-12..i-1]
        | _ -> s

let calc = int >> factorial >> fmt

stdin.ReadLine () |> calc |> printfn "%s"
0