結果

問題 No.927 Second Permutation
ユーザー simansiman
提出日時 2020-08-11 12:31:02
言語 Ruby
(3.4.1)
結果
AC  
実行時間 362 ms / 2,000 ms
コード長 307 bytes
コンパイル時間 357 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 15,872 KB
最終ジャッジ日時 2024-10-09 11:21:21
合計ジャッジ時間 7,463 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 27
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:10: warning: ambiguous first argument; put parentheses or a space even after `-' operator
Main.rb:17: warning: ambiguous first argument; put parentheses or a space even after `-' operator
Main.rb:4: warning: assigned but unused variable - counter
Syntax OK

ソースコード

diff #

X = gets.to_i
N = X.to_s.size

counter = Hash.new(0)
nums = X.digits.sort

idx = (0..(N - 2)).find { |idx| nums[idx] != nums[idx + 1] }

if idx.nil?
  puts -1
else
  nums[idx], nums[idx + 1] = nums[idx + 1], nums[idx]

  ans = nums.reverse.join

  if ans[0] == '0'
    puts -1
  else
    puts ans
  end
end
0