結果

問題 No.504 ゲーム大会(ランキング)
ユーザー taktak
提出日時 2018-04-12 09:26:46
言語 F#
(F# 4.0)
結果
AC  
実行時間 720 ms / 2,000 ms
コード長 235 bytes
コンパイル時間 6,681 ms
コンパイル使用メモリ 188,416 KB
実行使用メモリ 49,360 KB
最終ジャッジ日時 2024-06-26 21:21:31
合計ジャッジ時間 16,039 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 340 ms
34,068 KB
testcase_01 AC 338 ms
34,476 KB
testcase_02 AC 340 ms
34,220 KB
testcase_03 AC 343 ms
33,884 KB
testcase_04 AC 338 ms
34,224 KB
testcase_05 AC 341 ms
33,956 KB
testcase_06 AC 339 ms
34,124 KB
testcase_07 AC 703 ms
48,872 KB
testcase_08 AC 697 ms
48,604 KB
testcase_09 AC 720 ms
49,360 KB
testcase_10 AC 695 ms
48,216 KB
testcase_11 AC 694 ms
49,000 KB
testcase_12 AC 703 ms
47,580 KB
testcase_13 AC 698 ms
44,588 KB
testcase_14 AC 696 ms
48,560 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (233 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 aHead = a |> Array.head

a
|> Array.tail
|> Array.scan (fun acc x -> 
    if x > aHead then acc + 1  else acc) 1
|> Array.iter (printfn "%i")
0