結果

問題 No.397 NO MORE KADOMATSU
ユーザー simansiman
提出日時 2021-02-26 10:50:07
言語 Ruby
(3.3.0)
結果
AC  
実行時間 152 ms / 2,000 ms
コード長 319 bytes
コンパイル時間 58 ms
コンパイル使用メモリ 7,680 KB
実行使用メモリ 29,408 KB
平均クエリ数 936.56
最終ジャッジ日時 2024-07-17 02:57:38
合計ジャッジ時間 3,630 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
28,640 KB
testcase_01 AC 113 ms
28,640 KB
testcase_02 AC 113 ms
28,512 KB
testcase_03 AC 114 ms
28,640 KB
testcase_04 AC 110 ms
28,896 KB
testcase_05 AC 112 ms
28,640 KB
testcase_06 AC 118 ms
28,896 KB
testcase_07 AC 119 ms
28,640 KB
testcase_08 AC 110 ms
28,768 KB
testcase_09 AC 112 ms
28,640 KB
testcase_10 AC 152 ms
29,024 KB
testcase_11 AC 109 ms
29,152 KB
testcase_12 AC 126 ms
29,408 KB
testcase_13 AC 131 ms
28,896 KB
testcase_14 AC 134 ms
29,280 KB
testcase_15 AC 137 ms
29,280 KB
testcase_16 AC 112 ms
28,624 KB
testcase_17 AC 109 ms
28,496 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

N = gets.to_i
A = gets.split.map(&:to_i)

updated = true
ans = []

while updated
  updated = false

  (N - 1).times do |i|
    next if A[i] <= A[i + 1]

    A[i], A[i + 1] = A[i + 1], A[i]
    ans << [i, i + 1]
    updated = true
    break
  end
end

puts ans.size
puts ans.map { |u, v| "#{u} #{v}" }
STDOUT.flush
gets
0