結果

問題 No.564 背の順
ユーザー LEDLED
提出日時 2019-02-01 03:20:47
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 147 bytes
コンパイル時間 179 ms
コンパイル使用メモリ 7,296 KB
実行使用メモリ 12,416 KB
最終ジャッジ日時 2024-11-19 06:07:07
合計ジャッジ時間 1,856 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 75 ms
12,160 KB
testcase_01 AC 77 ms
12,160 KB
testcase_02 AC 75 ms
12,160 KB
testcase_03 WA -
testcase_04 AC 79 ms
12,416 KB
testcase_05 AC 77 ms
12,288 KB
testcase_06 AC 75 ms
12,032 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 76 ms
12,416 KB
testcase_10 AC 75 ms
12,288 KB
testcase_11 AC 76 ms
12,032 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

hn,n=gets.split.map(&:to_i)
r=n-(0...n-1).to_a.map{gets.to_i}.sort.take_while{|m|m<hn}.size
puts r<=3 ? r.to_s+['st','nd','rd'][r-1] : r.to_s+'th'
0