結果

問題 No.504 ゲーム大会(ランキング)
ユーザー gemmarogemmaro
提出日時 2019-11-23 06:47:52
言語 Ruby
(3.3.0)
結果
AC  
実行時間 500 ms / 2,000 ms
コード長 166 bytes
コンパイル時間 195 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 12,928 KB
最終ジャッジ日時 2024-04-19 14:26:36
合計ジャッジ時間 5,954 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 76 ms
12,288 KB
testcase_01 AC 78 ms
12,160 KB
testcase_02 AC 78 ms
12,288 KB
testcase_03 AC 78 ms
12,288 KB
testcase_04 AC 77 ms
12,160 KB
testcase_05 AC 78 ms
12,160 KB
testcase_06 AC 76 ms
12,288 KB
testcase_07 AC 448 ms
12,672 KB
testcase_08 AC 432 ms
12,672 KB
testcase_09 AC 438 ms
12,672 KB
testcase_10 AC 441 ms
12,800 KB
testcase_11 AC 441 ms
12,800 KB
testcase_12 AC 500 ms
12,672 KB
testcase_13 AC 423 ms
12,672 KB
testcase_14 AC 485 ms
12,928 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

# frozen_string_literal: true

n = gets.chomp.to_i

k = gets.chomp.to_i
rank = 1
p rank

(n - 1).times do |_i|
  a = gets.chomp.to_i
  rank += 1 if a > k
  p rank
end
0