結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 98 ms
12,032 KB
testcase_01 AC 98 ms
12,032 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 97 ms
12,160 KB
testcase_06 AC 100 ms
12,032 KB
testcase_07 AC 98 ms
12,160 KB
testcase_08 AC 166 ms
15,104 KB
testcase_09 AC 104 ms
12,288 KB
testcase_10 AC 213 ms
16,384 KB
testcase_11 AC 350 ms
20,224 KB
testcase_12 AC 180 ms
15,744 KB
testcase_13 AC 108 ms
12,288 KB
testcase_14 AC 224 ms
16,256 KB
testcase_15 AC 184 ms
15,488 KB
testcase_16 AC 402 ms
20,352 KB
testcase_17 AC 403 ms
20,224 KB
testcase_18 AC 409 ms
20,224 KB
testcase_19 AC 401 ms
20,352 KB
testcase_20 AC 401 ms
20,224 KB
testcase_21 AC 406 ms
20,096 KB
testcase_22 AC 408 ms
20,352 KB
testcase_23 AC 405 ms
20,224 KB
testcase_24 AC 341 ms
20,608 KB
testcase_25 AC 216 ms
16,768 KB
testcase_26 AC 178 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