結果

問題 No.927 Second Permutation
ユーザー simansiman
提出日時 2020-08-11 12:25:21
言語 Ruby
(3.3.0)
結果
WA  
実行時間 -
コード長 515 bytes
コンパイル時間 95 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 20,736 KB
最終ジャッジ日時 2024-10-09 11:21:12
合計ジャッジ時間 7,774 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 90 ms
12,160 KB
testcase_01 AC 90 ms
12,160 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 89 ms
12,288 KB
testcase_06 AC 92 ms
12,160 KB
testcase_07 AC 90 ms
12,160 KB
testcase_08 AC 154 ms
14,976 KB
testcase_09 AC 96 ms
12,160 KB
testcase_10 AC 208 ms
16,256 KB
testcase_11 AC 339 ms
20,224 KB
testcase_12 AC 171 ms
15,744 KB
testcase_13 AC 106 ms
12,416 KB
testcase_14 AC 220 ms
16,256 KB
testcase_15 AC 170 ms
15,744 KB
testcase_16 AC 392 ms
20,352 KB
testcase_17 AC 388 ms
20,224 KB
testcase_18 AC 391 ms
20,224 KB
testcase_19 AC 389 ms
20,224 KB
testcase_20 AC 396 ms
20,224 KB
testcase_21 AC 393 ms
20,096 KB
testcase_22 AC 394 ms
20,224 KB
testcase_23 AC 388 ms
20,224 KB
testcase_24 AC 329 ms
20,736 KB
testcase_25 AC 210 ms
16,640 KB
testcase_26 AC 170 ms
16,000 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
権限があれば一括ダウンロードができます
コンパイルメッセージ
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.map(&:to_s)
vals = nums.uniq.map(&:to_s)

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
end
0