結果

問題 No.504 ゲーム大会(ランキング)
ユーザー taktak
提出日時 2018-04-12 09:30:28
言語 F#
(F# 4.0)
結果
AC  
実行時間 690 ms / 2,000 ms
コード長 233 bytes
コンパイル時間 6,917 ms
コンパイル使用メモリ 188,484 KB
実行使用メモリ 49,276 KB
最終ジャッジ日時 2024-06-26 21:22:20
合計ジャッジ時間 15,847 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 332 ms
34,628 KB
testcase_01 AC 333 ms
34,756 KB
testcase_02 AC 329 ms
33,972 KB
testcase_03 AC 335 ms
34,608 KB
testcase_04 AC 332 ms
34,876 KB
testcase_05 AC 343 ms
34,364 KB
testcase_06 AC 334 ms
34,748 KB
testcase_07 AC 677 ms
49,144 KB
testcase_08 AC 688 ms
49,148 KB
testcase_09 AC 676 ms
49,140 KB
testcase_10 AC 674 ms
49,076 KB
testcase_11 AC 680 ms
49,276 KB
testcase_12 AC 678 ms
48,628 KB
testcase_13 AC 670 ms
45,300 KB
testcase_14 AC 690 ms
49,152 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (248 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 = Array.init N (fun _ -> stdin.ReadLine() |> int)

let f = 
    Array.tail
    >>Array.scan (fun acc x -> if x > (a |> Array.head) then acc + 1  else acc) 1
    >> Array.iter (printfn "%i") 

f a
0