結果
| 問題 | No.927 Second Permutation |
| コンテスト | |
| ユーザー |
siman
|
| 提出日時 | 2020-08-11 12:31:02 |
| 言語 | Ruby (4.0.2) |
| 結果 |
AC
|
| 実行時間 | 214 ms / 2,000 ms |
| コード長 | 307 bytes |
| 記録 | |
| コンパイル時間 | 56 ms |
| コンパイル使用メモリ | 9,088 KB |
| 実行使用メモリ | 17,824 KB |
| 最終ジャッジ日時 | 2026-04-25 14:33:40 |
| 合計ジャッジ時間 | 4,841 ms |
|
ジャッジサーバーID (参考情報) |
judge2_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| 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
ソースコード
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
siman