結果

問題 No.504 ゲーム大会(ランキング)
ユーザー natoriusannatoriusan
提出日時 2023-08-01 20:33:16
言語 F#
(F# 4.0)
結果
AC  
実行時間 761 ms / 2,000 ms
コード長 216 bytes
コンパイル時間 9,732 ms
コンパイル使用メモリ 187,816 KB
実行使用メモリ 58,084 KB
最終ジャッジ日時 2024-10-11 11:58:48
合計ジャッジ時間 20,601 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 337 ms
34,052 KB
testcase_01 AC 338 ms
34,348 KB
testcase_02 AC 339 ms
34,488 KB
testcase_03 AC 337 ms
34,488 KB
testcase_04 AC 338 ms
34,736 KB
testcase_05 AC 337 ms
34,356 KB
testcase_06 AC 336 ms
34,472 KB
testcase_07 AC 751 ms
57,848 KB
testcase_08 AC 758 ms
57,840 KB
testcase_09 AC 754 ms
57,280 KB
testcase_10 AC 752 ms
58,080 KB
testcase_11 AC 757 ms
58,084 KB
testcase_12 AC 750 ms
57,968 KB
testcase_13 AC 747 ms
58,000 KB
testcase_14 AC 761 ms
57,972 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
  復元対象のプロジェクトを決定しています...
  /home/judge/data/code/main.fsproj を復元しました (264 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 mutable ans = 1
let score = stdin.ReadLine () |> int
printfn "%d" ans
for i in 1..n-1 do
    if stdin.ReadLine () |> int > score then
        ans <- ans + 1
    printfn "%d" ans
0