結果

問題 No.564 背の順
コンテスト
ユーザー fine
提出日時 2017-09-08 22:24:51
言語 Ruby
(4.0.2)
コンパイル:
ruby -w -c _filename_
実行:
ruby _filename_
結果
AC  
実行時間 55 ms / 2,000 ms
コード長 272 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 218 ms
コンパイル使用メモリ 8,960 KB
実行使用メモリ 14,848 KB
最終ジャッジ日時 2026-05-07 20:28:29
合計ジャッジ時間 1,763 ms
ジャッジサーバーID
(参考情報)
judge1_1 / judge3_0
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 9
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:1: warning: assigned but unused variable - n
Syntax OK

ソースコード

diff #
raw source code

a,n = gets.split.map(&:to_i)
h=$<.map(&:to_i)
h.push(a)
h.sort!.reverse!
ans = h.index(a) + 1
if ans % 10 == 1
    ans = ans.to_s + "st"
elsif ans % 10 == 2
    ans = ans.to_s + "nd"
elsif ans % 10 == 3
    ans = ans.to_s + "rd"
else
    ans = ans.to_s + "th"
end
puts ans
0