結果

問題 No.927 Second Permutation
ユーザー kyo1kyo1
提出日時 2020-08-13 07:25:31
言語 Ruby
(3.3.0)
結果
AC  
実行時間 278 ms / 2,000 ms
コード長 243 bytes
コンパイル時間 232 ms
コンパイル使用メモリ 7,424 KB
実行使用メモリ 23,936 KB
最終ジャッジ日時 2024-10-09 18:57:39
合計ジャッジ時間 6,488 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 84 ms
12,160 KB
testcase_01 AC 86 ms
12,160 KB
testcase_02 AC 84 ms
12,160 KB
testcase_03 AC 84 ms
12,416 KB
testcase_04 AC 90 ms
12,288 KB
testcase_05 AC 89 ms
12,288 KB
testcase_06 AC 86 ms
12,416 KB
testcase_07 AC 86 ms
12,160 KB
testcase_08 AC 130 ms
15,616 KB
testcase_09 AC 88 ms
12,288 KB
testcase_10 AC 161 ms
16,204 KB
testcase_11 AC 245 ms
22,912 KB
testcase_12 AC 144 ms
15,616 KB
testcase_13 AC 91 ms
12,544 KB
testcase_14 AC 171 ms
19,200 KB
testcase_15 AC 140 ms
15,744 KB
testcase_16 AC 268 ms
23,936 KB
testcase_17 AC 274 ms
23,808 KB
testcase_18 AC 271 ms
23,808 KB
testcase_19 AC 269 ms
23,680 KB
testcase_20 AC 269 ms
23,680 KB
testcase_21 AC 273 ms
23,808 KB
testcase_22 AC 278 ms
23,680 KB
testcase_23 AC 276 ms
23,680 KB
testcase_24 AC 175 ms
23,424 KB
testcase_25 AC 144 ms
19,712 KB
testcase_26 AC 126 ms
15,988 KB
testcase_27 AC 128 ms
15,872 KB
testcase_28 AC 181 ms
22,912 KB
testcase_29 AC 172 ms
20,736 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

s = gets.chomp.chars.sort.reverse.join
t = s.reverse.chars

(t.size - 1).times do |i|
  if t[i] != t[i + 1]
    t[i], t[i + 1] = t[i + 1], t[i]
    break
  end
end

t = t.join.reverse

if s == t || t.to_i.to_s != t
  puts(-1)
elsif puts t
end
0