結果

問題 No.39 桁の数字を入れ替え
ユーザー mm
提出日時 2020-08-08 08:21:42
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 209 bytes
コンパイル時間 45 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 12,288 KB
最終ジャッジ日時 2024-10-01 05:38:54
合計ジャッジ時間 2,306 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

a = gets.chomp.split("")
max, maxi = 0, 0
a.each_with_index { |x, i|
  if i == 0
    max = x.to_i
  end
  if x.to_i >= max
    max = x.to_i
    maxi = i
  end
}
w = a[0]
a[0] = a[maxi]
a[maxi] = w
puts a.join
0