結果

問題 No.123 カードシャッフル
ユーザー taktak
提出日時 2018-03-29 21:49:49
言語 F#
(F# 4.0)
結果
AC  
実行時間 614 ms / 5,000 ms
コード長 350 bytes
コンパイル時間 13,742 ms
コンパイル使用メモリ 192,884 KB
実行使用メモリ 66,816 KB
最終ジャッジ日時 2024-06-25 23:54:33
合計ジャッジ時間 20,239 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 338 ms
34,044 KB
testcase_01 AC 341 ms
34,132 KB
testcase_02 AC 335 ms
34,360 KB
testcase_03 AC 335 ms
34,172 KB
testcase_04 AC 344 ms
34,788 KB
testcase_05 AC 343 ms
34,236 KB
testcase_06 AC 341 ms
34,204 KB
testcase_07 AC 331 ms
34,172 KB
testcase_08 AC 334 ms
34,304 KB
testcase_09 AC 338 ms
34,428 KB
testcase_10 AC 355 ms
41,248 KB
testcase_11 AC 594 ms
66,816 KB
testcase_12 AC 614 ms
66,432 KB
testcase_13 AC 613 ms
66,656 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (394 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 #

open System

let read() = Console.ReadLine().Split() |> Array.map (int)

let N,M = let t = read() in t.[0],t.[1]
let A   = read()

A
|> Array.fold (fun acc x -> 
    match x with
    | 1            -> acc
    | x when x = N -> acc.[x-1]::acc.[..(x-2)]
    | x            -> acc.[x-1]::acc.[..(x-2)]@acc.[x..]
    ) [1..N]
|> List.head
|> printfn "%i"
0