結果

問題 No.490 yukiソート
ユーザー Takuya NoguchiTakuya Noguchi
提出日時 2018-03-14 21:48:57
言語 Ruby
(3.4.1)
結果
TLE  
実行時間 -
コード長 225 bytes
コンパイル時間 322 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 31,012 KB
最終ジャッジ日時 2024-11-29 13:42:11
合計ジャッジ時間 63,417 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 91 ms
18,852 KB
testcase_01 AC 88 ms
24,448 KB
testcase_02 AC 89 ms
18,976 KB
testcase_03 AC 90 ms
24,704 KB
testcase_04 TLE -
testcase_05 TLE -
testcase_06 TLE -
testcase_07 TLE -
testcase_08 TLE -
testcase_09 TLE -
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 AC 88 ms
12,160 KB
testcase_25 AC 90 ms
12,160 KB
testcase_26 AC 90 ms
12,160 KB
testcase_27 AC 90 ms
12,032 KB
testcase_28 AC 90 ms
12,288 KB
testcase_29 AC 90 ms
12,032 KB
testcase_30 AC 90 ms
12,032 KB
testcase_31 AC 89 ms
12,288 KB
testcase_32 AC 89 ms
12,160 KB
testcase_33 AC 92 ms
12,032 KB
testcase_34 AC 90 ms
12,288 KB
testcase_35 AC 91 ms
31,012 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

n = gets.to_i
a = gets.split.map(&:to_i)

1.upto(2 * n - 4) do |i|
  0.upto(n - 1) do |q|
    0.upto(n - 1) do |p|
      next unless p + q == i

      a[p], a[q] = a[q], a[p] if a[p] > a[q]
    end
  end
end

puts a.join(' ')
0