結果
問題 | No.504 ゲーム大会(ランキング) |
ユーザー | rky |
提出日時 | 2017-11-09 23:51:09 |
言語 | Ruby (3.3.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 217 bytes |
コンパイル時間 | 83 ms |
コンパイル使用メモリ | 7,552 KB |
実行使用メモリ | 47,652 KB |
最終ジャッジ日時 | 2024-11-24 07:40:02 |
合計ジャッジ時間 | 26,070 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 79 ms
17,536 KB |
testcase_01 | AC | 76 ms
41,088 KB |
testcase_02 | AC | 78 ms
17,536 KB |
testcase_03 | AC | 77 ms
40,960 KB |
testcase_04 | AC | 76 ms
17,536 KB |
testcase_05 | AC | 80 ms
40,832 KB |
testcase_06 | AC | 77 ms
17,536 KB |
testcase_07 | TLE | - |
testcase_08 | TLE | - |
testcase_09 | TLE | - |
testcase_10 | TLE | - |
testcase_11 | TLE | - |
testcase_12 | TLE | - |
testcase_13 | TLE | - |
testcase_14 | TLE | - |
コンパイルメッセージ
Syntax OK
ソースコード
test_case = gets.chomp.to_i res, rank = Array.new, Array.new num = 0 test_case.times do |i| point = gets.chomp.to_i num = point if i == 0 rank << point res << rank.sort{|a, b| b <=> a }.index(num) + 1 end puts res