結果

問題 No.478 一般門松列列
ユーザー ichibanshiboriichibanshibori
提出日時 2017-01-27 23:21:02
言語 F#
(F# 4.0)
結果
AC  
実行時間 69 ms / 2,000 ms
コード長 737 bytes
コンパイル時間 9,177 ms
コンパイル使用メモリ 184,940 KB
実行使用メモリ 32,884 KB
最終ジャッジ日時 2024-06-06 05:19:15
合計ジャッジ時間 12,903 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 67 ms
31,104 KB
testcase_01 AC 65 ms
30,976 KB
testcase_02 AC 63 ms
30,976 KB
testcase_03 AC 65 ms
30,976 KB
testcase_04 AC 65 ms
31,228 KB
testcase_05 AC 65 ms
31,080 KB
testcase_06 AC 65 ms
31,200 KB
testcase_07 AC 64 ms
31,104 KB
testcase_08 AC 64 ms
30,976 KB
testcase_09 AC 67 ms
31,104 KB
testcase_10 AC 64 ms
31,104 KB
testcase_11 AC 69 ms
32,768 KB
testcase_12 AC 67 ms
32,768 KB
testcase_13 AC 68 ms
32,768 KB
testcase_14 AC 69 ms
32,884 KB
testcase_15 AC 68 ms
32,640 KB
testcase_16 AC 67 ms
31,488 KB
testcase_17 AC 69 ms
32,768 KB
testcase_18 AC 69 ms
32,000 KB
testcase_19 AC 69 ms
32,724 KB
testcase_20 AC 68 ms
32,512 KB
testcase_21 AC 69 ms
32,496 KB
testcase_22 AC 65 ms
31,872 KB
testcase_23 AC 67 ms
31,744 KB
testcase_24 AC 68 ms
32,244 KB
testcase_25 AC 69 ms
32,384 KB
testcase_26 AC 65 ms
31,488 KB
testcase_27 AC 65 ms
31,616 KB
testcase_28 AC 68 ms
31,360 KB
testcase_29 AC 66 ms
31,232 KB
testcase_30 AC 68 ms
32,256 KB
testcase_31 AC 67 ms
31,872 KB
testcase_32 AC 66 ms
31,616 KB
testcase_33 AC 65 ms
31,744 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (231 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 gen_kadomatsu a1 a2 =
    if a1 > a2 then a1 + 1
    elif a1 < a2 then a2 - 1
    else failwith "gen_kadomatsu"

let gen_kadomatsu_retu_retu n k =
    let rec gen_kadomatsu_retu_retu' idx a1 a2 result =
        if idx + 2 >= n then a2 :: a1 :: result
        else
            let a3 =
                if idx + 2 + k >= n then a2
                                    else gen_kadomatsu a1 a2
            gen_kadomatsu_retu_retu' (idx + 1) a2 a3 (a1 :: result)
    in
    gen_kadomatsu_retu_retu' 0 1 0 []


let () =
    let n, k = stdin.ReadLine().Split()
               |> Array.map int
               |> fun arr -> (arr.[0], arr.[1])

    gen_kadomatsu_retu_retu n k
    |> fun lst -> System.String.Join(" ", lst)
    |> printfn "%s"
0