結果

問題 No.322 Geometry Dash
ユーザー cielciel
提出日時 2015-12-15 00:17:03
言語 Ruby
(3.3.0)
結果
AC  
実行時間 275 ms / 2,000 ms
コード長 102 bytes
コンパイル時間 188 ms
コンパイル使用メモリ 11,256 KB
実行使用メモリ 34,832 KB
最終ジャッジ日時 2023-08-27 00:13:43
合計ジャッジ時間 12,755 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 79 ms
14,988 KB
testcase_01 AC 83 ms
15,212 KB
testcase_02 AC 80 ms
15,144 KB
testcase_03 AC 79 ms
15,280 KB
testcase_04 AC 243 ms
33,756 KB
testcase_05 AC 265 ms
34,548 KB
testcase_06 AC 265 ms
34,356 KB
testcase_07 AC 275 ms
34,452 KB
testcase_08 AC 274 ms
34,252 KB
testcase_09 AC 258 ms
34,144 KB
testcase_10 AC 265 ms
34,520 KB
testcase_11 AC 262 ms
34,436 KB
testcase_12 AC 264 ms
34,524 KB
testcase_13 AC 271 ms
34,244 KB
testcase_14 AC 259 ms
34,436 KB
testcase_15 AC 262 ms
34,484 KB
testcase_16 AC 270 ms
34,376 KB
testcase_17 AC 273 ms
34,832 KB
testcase_18 AC 268 ms
34,240 KB
testcase_19 AC 268 ms
34,588 KB
testcase_20 AC 270 ms
34,460 KB
testcase_21 AC 269 ms
34,660 KB
testcase_22 AC 271 ms
34,624 KB
testcase_23 AC 273 ms
34,412 KB
testcase_24 AC 267 ms
34,692 KB
testcase_25 AC 271 ms
34,504 KB
testcase_26 AC 272 ms
34,792 KB
testcase_27 AC 274 ms
34,724 KB
testcase_28 AC 273 ms
34,268 KB
testcase_29 AC 237 ms
25,452 KB
testcase_30 AC 249 ms
25,164 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N=gets.to_i
a=$<.map{|e|e.split.map &:to_f}.transpose
puts [*1..N].sort_by{|i|a[i-1][1]/a[i-1][0]}*' '
0