結果

問題 No.365 ジェンガソート
ユーザー iwotiwot
提出日時 2020-06-23 10:07:07
言語 F#
(F# 4.0)
結果
AC  
実行時間 344 ms / 2,000 ms
コード長 444 bytes
コンパイル時間 10,327 ms
コンパイル使用メモリ 192,696 KB
実行使用メモリ 45,440 KB
最終ジャッジ日時 2024-07-03 19:11:51
合計ジャッジ時間 27,658 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 316 ms
34,752 KB
testcase_01 AC 312 ms
34,744 KB
testcase_02 AC 308 ms
34,600 KB
testcase_03 AC 308 ms
33,932 KB
testcase_04 AC 312 ms
34,484 KB
testcase_05 AC 307 ms
34,884 KB
testcase_06 AC 308 ms
34,476 KB
testcase_07 AC 307 ms
34,748 KB
testcase_08 AC 301 ms
34,496 KB
testcase_09 AC 313 ms
34,620 KB
testcase_10 AC 318 ms
34,480 KB
testcase_11 AC 318 ms
33,800 KB
testcase_12 AC 304 ms
33,928 KB
testcase_13 AC 318 ms
34,612 KB
testcase_14 AC 313 ms
34,748 KB
testcase_15 AC 319 ms
34,600 KB
testcase_16 AC 326 ms
42,368 KB
testcase_17 AC 334 ms
44,772 KB
testcase_18 AC 316 ms
35,540 KB
testcase_19 AC 330 ms
44,800 KB
testcase_20 AC 319 ms
37,304 KB
testcase_21 AC 312 ms
36,456 KB
testcase_22 AC 322 ms
42,496 KB
testcase_23 AC 323 ms
38,604 KB
testcase_24 AC 325 ms
42,240 KB
testcase_25 AC 314 ms
36,772 KB
testcase_26 AC 320 ms
40,960 KB
testcase_27 AC 334 ms
44,928 KB
testcase_28 AC 342 ms
41,216 KB
testcase_29 AC 342 ms
43,264 KB
testcase_30 AC 327 ms
41,088 KB
testcase_31 AC 315 ms
37,552 KB
testcase_32 AC 327 ms
36,868 KB
testcase_33 AC 333 ms
45,440 KB
testcase_34 AC 323 ms
36,304 KB
testcase_35 AC 328 ms
42,112 KB
testcase_36 AC 332 ms
45,312 KB
testcase_37 AC 327 ms
45,440 KB
testcase_38 AC 334 ms
45,440 KB
testcase_39 AC 344 ms
45,184 KB
testcase_40 AC 340 ms
45,184 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (324 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() |> int
let A = stdin.ReadLine().Split(' ') |> Array.map int

let mutable count = 0
for i in N-1 .. -1 .. 0 do
    if A.[i] = N then
        let mutable find = N - 1
        let mutable tmpcount = 1
        for j in i-1 .. -1 .. 0 do
            if A.[j] = find then
                find <- A.[j] - 1
                tmpcount <- tmpcount + 1
        if tmpcount > count then count <- tmpcount

printfn "%d" <| N - count
0