結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 78 ms
12,032 KB
testcase_01 AC 73 ms
12,032 KB
testcase_02 AC 73 ms
12,032 KB
testcase_03 AC 77 ms
12,160 KB
testcase_04 AC 75 ms
12,160 KB
testcase_05 AC 73 ms
12,032 KB
testcase_06 AC 73 ms
12,160 KB
testcase_07 AC 78 ms
12,032 KB
testcase_08 AC 121 ms
14,208 KB
testcase_09 AC 74 ms
12,160 KB
testcase_10 AC 171 ms
15,232 KB
testcase_11 AC 293 ms
17,408 KB
testcase_12 AC 143 ms
14,464 KB
testcase_13 AC 82 ms
12,288 KB
testcase_14 AC 173 ms
15,360 KB
testcase_15 AC 137 ms
14,464 KB
testcase_16 AC 318 ms
17,792 KB
testcase_17 AC 322 ms
17,536 KB
testcase_18 AC 316 ms
17,536 KB
testcase_19 AC 317 ms
17,664 KB
testcase_20 AC 315 ms
17,792 KB
testcase_21 AC 315 ms
17,536 KB
testcase_22 AC 313 ms
17,792 KB
testcase_23 AC 316 ms
17,536 KB
testcase_24 AC 244 ms
16,512 KB
testcase_25 AC 155 ms
14,720 KB
testcase_26 AC 124 ms
14,208 KB
testcase_27 AC 97 ms
14,208 KB
testcase_28 AC 155 ms
16,256 KB
testcase_29 AC 132 ms
15,744 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