結果

問題 No.365 ジェンガソート
ユーザー kuuso1kuuso1
提出日時 2016-09-06 23:59:32
言語 F#
(F# 4.0)
結果
AC  
実行時間 360 ms / 2,000 ms
コード長 485 bytes
コンパイル時間 12,990 ms
コンパイル使用メモリ 195,104 KB
実行使用メモリ 45,696 KB
最終ジャッジ日時 2024-11-15 20:59:55
合計ジャッジ時間 25,999 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 335 ms
34,596 KB
testcase_01 AC 340 ms
34,588 KB
testcase_02 AC 336 ms
34,052 KB
testcase_03 AC 335 ms
34,608 KB
testcase_04 AC 339 ms
33,840 KB
testcase_05 AC 337 ms
34,316 KB
testcase_06 AC 335 ms
34,356 KB
testcase_07 AC 335 ms
34,196 KB
testcase_08 AC 337 ms
33,672 KB
testcase_09 AC 338 ms
33,912 KB
testcase_10 AC 336 ms
34,592 KB
testcase_11 AC 337 ms
34,608 KB
testcase_12 AC 335 ms
34,468 KB
testcase_13 AC 337 ms
33,804 KB
testcase_14 AC 335 ms
34,056 KB
testcase_15 AC 337 ms
33,924 KB
testcase_16 AC 358 ms
42,864 KB
testcase_17 AC 355 ms
44,800 KB
testcase_18 AC 338 ms
35,364 KB
testcase_19 AC 360 ms
44,928 KB
testcase_20 AC 343 ms
37,676 KB
testcase_21 AC 344 ms
36,984 KB
testcase_22 AC 350 ms
42,368 KB
testcase_23 AC 346 ms
38,900 KB
testcase_24 AC 352 ms
42,076 KB
testcase_25 AC 342 ms
36,280 KB
testcase_26 AC 350 ms
40,704 KB
testcase_27 AC 358 ms
45,428 KB
testcase_28 AC 349 ms
41,088 KB
testcase_29 AC 354 ms
43,136 KB
testcase_30 AC 349 ms
41,328 KB
testcase_31 AC 342 ms
37,528 KB
testcase_32 AC 342 ms
36,764 KB
testcase_33 AC 354 ms
45,312 KB
testcase_34 AC 340 ms
36,576 KB
testcase_35 AC 353 ms
42,240 KB
testcase_36 AC 355 ms
45,568 KB
testcase_37 AC 354 ms
45,312 KB
testcase_38 AC 356 ms
45,440 KB
testcase_39 AC 356 ms
45,312 KB
testcase_40 AC 358 ms
45,696 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (299 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 ri () = stdin.ReadLine() |> int
let ria () = stdin.ReadLine().Split() |> Array.map int

type Sol() =
    member this.Solve() = 
        let N = ri ()
        let A = ria ()
        
        let rec f (ar: int[]) i n sum =
            match i with
            | -1 -> sum
            | _ when ar.[i] = n -> f ar (i-1) (n-1) sum
            | _ -> f ar (i-1) n (sum+1)
        
        f A (N-1) N 0 |> printfn "%d"
        
        
let mySol = new Sol()
mySol.Solve()
0