結果
問題 | No.693 square1001 and Permutation 2 |
ユーザー |
![]() |
提出日時 | 2018-08-02 05:37:51 |
言語 | F# (F# 4.0) |
結果 |
AC
|
実行時間 | 345 ms / 2,000 ms |
コード長 | 247 bytes |
コンパイル時間 | 8,646 ms |
コンパイル使用メモリ | 184,352 KB |
実行使用メモリ | 35,052 KB |
最終ジャッジ日時 | 2024-09-19 17:02:21 |
合計ジャッジ時間 | 11,910 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 2 |
other | AC * 9 |
コンパイルメッセージ
復元対象のプロジェクトを決定しています... /home/judge/data/code/main.fsproj を復元しました (223 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/
ソースコード
let R() = stdin.ReadLine()let N = R() |> intlet A = R().Split() |> Array.map (int >> fun x -> x - 1) |> Array.sortlet ans =A|> Array.indexed|> Array.fold (fun acc (idx,value) -> acc + abs(idx - value)) 0ans |> printfn "%i"