結果

問題 No.123 カードシャッフル
ユーザー regeregeregerege
提出日時 2016-06-17 23:56:25
言語 F#
(F# 4.0)
結果
AC  
実行時間 3,199 ms / 5,000 ms
コード長 358 bytes
コンパイル時間 8,771 ms
コンパイル使用メモリ 186,212 KB
実行使用メモリ 75,356 KB
最終ジャッジ日時 2024-10-09 17:29:14
合計ジャッジ時間 22,205 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 341 ms
34,788 KB
testcase_01 AC 341 ms
34,656 KB
testcase_02 AC 342 ms
35,124 KB
testcase_03 AC 338 ms
34,924 KB
testcase_04 AC 338 ms
35,004 KB
testcase_05 AC 339 ms
35,036 KB
testcase_06 AC 336 ms
35,160 KB
testcase_07 AC 338 ms
34,916 KB
testcase_08 AC 338 ms
34,660 KB
testcase_09 AC 335 ms
35,184 KB
testcase_10 AC 358 ms
43,928 KB
testcase_11 AC 3,199 ms
75,356 KB
testcase_12 AC 3,152 ms
75,288 KB
testcase_13 AC 3,188 ms
75,160 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (295 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 N = stdin.ReadLine().Split(' ').[0] |> int
let ss = stdin.ReadLine().Split(' ') |> Seq.map int |> Seq.toList
let rec ml i p l = function
    | x::xs -> ml i (p+1) (if i = p then x::l else l@[x]) xs
    | _ -> l
let rec f c = function
    | s::ss ->
        if s = 1 then f c ss
        else f (ml s 1 [] c) ss
    | _ -> c.[0]
f [1..N] ss
|> printfn "%d"
0