結果

問題 No.927 Second Permutation
ユーザー simansiman
提出日時 2020-08-11 12:22:57
言語 Ruby
(3.3.0)
結果
AC  
実行時間 378 ms / 2,000 ms
コード長 496 bytes
コンパイル時間 58 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 17,792 KB
最終ジャッジ日時 2024-10-09 11:21:00
合計ジャッジ時間 7,321 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 92 ms
12,288 KB
testcase_01 AC 89 ms
12,160 KB
testcase_02 AC 90 ms
12,032 KB
testcase_03 AC 93 ms
12,032 KB
testcase_04 AC 89 ms
12,288 KB
testcase_05 AC 92 ms
12,160 KB
testcase_06 AC 88 ms
12,160 KB
testcase_07 AC 89 ms
12,032 KB
testcase_08 AC 150 ms
14,080 KB
testcase_09 AC 93 ms
12,288 KB
testcase_10 AC 201 ms
15,104 KB
testcase_11 AC 335 ms
17,408 KB
testcase_12 AC 169 ms
14,464 KB
testcase_13 AC 99 ms
12,544 KB
testcase_14 AC 209 ms
15,232 KB
testcase_15 AC 166 ms
14,720 KB
testcase_16 AC 376 ms
17,664 KB
testcase_17 AC 377 ms
17,792 KB
testcase_18 AC 376 ms
17,792 KB
testcase_19 AC 376 ms
17,664 KB
testcase_20 AC 378 ms
17,664 KB
testcase_21 AC 376 ms
17,664 KB
testcase_22 AC 377 ms
17,664 KB
testcase_23 AC 376 ms
17,664 KB
testcase_24 AC 290 ms
16,768 KB
testcase_25 AC 186 ms
14,592 KB
testcase_26 AC 150 ms
14,208 KB
testcase_27 AC 121 ms
14,208 KB
testcase_28 AC 182 ms
16,256 KB
testcase_29 AC 162 ms
16,000 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Main.rb:9: warning: ambiguous first argument; put parentheses or a space even after `-' operator
Main.rb:44: warning: ambiguous first argument; put parentheses or a space even after `-' operator
Syntax OK

ソースコード

diff #

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

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

if vals.size < 2
  puts -1
  exit
end

nums.each do |n|
  counter[n] += 1
end

ans = []

while vals.size >= 3
  v = vals.shift

  counter[v].times do
    ans << v
  end
end

if vals.size >= 2
  a = vals[-2]
  b = vals[-1]

  (counter[a] - 1).times do
    ans << a
  end

  ans << b
  ans << a

  (counter[b] - 1).times do
    ans << b
  end
end

if ans[0] == 0
  puts -1
else
  puts ans.join
end
0