結果

問題 No.365 ジェンガソート
ユーザー はむ吉🐹はむ吉🐹
提出日時 2016-08-17 21:20:51
言語 F#
(F# 4.0)
結果
AC  
実行時間 378 ms / 2,000 ms
コード長 233 bytes
コンパイル時間 8,650 ms
コンパイル使用メモリ 185,492 KB
実行使用メモリ 49,280 KB
最終ジャッジ日時 2024-11-07 18:51:42
合計ジャッジ時間 25,242 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 343 ms
34,728 KB
testcase_01 AC 346 ms
34,952 KB
testcase_02 AC 345 ms
34,100 KB
testcase_03 AC 347 ms
34,824 KB
testcase_04 AC 343 ms
34,596 KB
testcase_05 AC 344 ms
34,960 KB
testcase_06 AC 348 ms
34,600 KB
testcase_07 AC 344 ms
34,600 KB
testcase_08 AC 346 ms
34,848 KB
testcase_09 AC 345 ms
34,820 KB
testcase_10 AC 345 ms
34,588 KB
testcase_11 AC 345 ms
34,840 KB
testcase_12 AC 346 ms
34,720 KB
testcase_13 AC 344 ms
34,724 KB
testcase_14 AC 342 ms
34,976 KB
testcase_15 AC 347 ms
34,724 KB
testcase_16 AC 367 ms
45,440 KB
testcase_17 AC 375 ms
48,256 KB
testcase_18 AC 348 ms
35,948 KB
testcase_19 AC 373 ms
48,128 KB
testcase_20 AC 359 ms
39,136 KB
testcase_21 AC 357 ms
38,140 KB
testcase_22 AC 368 ms
45,312 KB
testcase_23 AC 358 ms
40,576 KB
testcase_24 AC 369 ms
44,672 KB
testcase_25 AC 355 ms
37,876 KB
testcase_26 AC 362 ms
43,008 KB
testcase_27 AC 372 ms
48,640 KB
testcase_28 AC 362 ms
43,264 KB
testcase_29 AC 372 ms
46,848 KB
testcase_30 AC 366 ms
43,392 KB
testcase_31 AC 355 ms
38,720 KB
testcase_32 AC 355 ms
37,876 KB
testcase_33 AC 378 ms
48,636 KB
testcase_34 AC 353 ms
37,360 KB
testcase_35 AC 370 ms
45,056 KB
testcase_36 AC 372 ms
48,896 KB
testcase_37 AC 371 ms
48,896 KB
testcase_38 AC 374 ms
49,280 KB
testcase_39 AC 371 ms
49,152 KB
testcase_40 AC 373 ms
49,024 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (303 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 minNumOfOps = List.foldBack (fun x t -> if x = t then t - 1 else t)

let () = 
    let n = stdin.ReadLine() |> int
    let xs = stdin.ReadLine().Split(' ') |> Array.map int |> List.ofArray
    in minNumOfOps xs n |> printfn "%d"
0