結果

問題 No.504 ゲーム大会(ランキング)
ユーザー taktak
提出日時 2018-04-12 09:33:38
言語 F#
(F# 4.0)
結果
AC  
実行時間 747 ms / 2,000 ms
コード長 213 bytes
コンパイル時間 7,223 ms
コンパイル使用メモリ 201,256 KB
実行使用メモリ 62,732 KB
最終ジャッジ日時 2024-06-26 21:22:37
合計ジャッジ時間 16,977 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 346 ms
35,308 KB
testcase_01 AC 344 ms
34,672 KB
testcase_02 AC 348 ms
34,508 KB
testcase_03 AC 348 ms
34,768 KB
testcase_04 AC 348 ms
34,632 KB
testcase_05 AC 350 ms
34,496 KB
testcase_06 AC 340 ms
34,020 KB
testcase_07 AC 744 ms
62,732 KB
testcase_08 AC 740 ms
62,460 KB
testcase_09 AC 747 ms
62,468 KB
testcase_10 AC 742 ms
62,472 KB
testcase_11 AC 747 ms
62,464 KB
testcase_12 AC 739 ms
62,180 KB
testcase_13 AC 712 ms
54,916 KB
testcase_14 AC 733 ms
62,324 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (239 ms)。
MSBuild のバージョン 17.9.6+a4ecab324 (.NET)
/home/judge/data/code/Main.fs(4,8): warning FS0025: この式のパターン マッチが不完全です たとえば、値 '[]' はパターンに含まれないケースを示す可能性があります。 [/home/judge/data/code/main.fsproj]
  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 = List.init N (fun _ -> stdin.ReadLine() |> int)

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

f a
0