結果

問題 No.927 Second Permutation
ユーザー horiesinitihoriesiniti
提出日時 2023-02-07 03:28:08
言語 Ruby
(3.3.0)
結果
AC  
実行時間 185 ms / 2,000 ms
コード長 211 bytes
コンパイル時間 85 ms
コンパイル使用メモリ 7,552 KB
実行使用メモリ 22,656 KB
最終ジャッジ日時 2024-07-05 03:11:53
合計ジャッジ時間 5,303 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 82 ms
12,288 KB
testcase_01 AC 94 ms
12,160 KB
testcase_02 AC 84 ms
12,160 KB
testcase_03 AC 85 ms
12,288 KB
testcase_04 AC 83 ms
12,160 KB
testcase_05 AC 84 ms
12,416 KB
testcase_06 AC 85 ms
12,288 KB
testcase_07 AC 87 ms
12,288 KB
testcase_08 AC 121 ms
15,360 KB
testcase_09 AC 94 ms
12,160 KB
testcase_10 AC 136 ms
16,000 KB
testcase_11 AC 174 ms
21,504 KB
testcase_12 AC 124 ms
15,744 KB
testcase_13 AC 93 ms
12,800 KB
testcase_14 AC 138 ms
18,176 KB
testcase_15 AC 126 ms
15,616 KB
testcase_16 AC 180 ms
22,656 KB
testcase_17 AC 185 ms
22,656 KB
testcase_18 AC 175 ms
22,528 KB
testcase_19 AC 177 ms
22,528 KB
testcase_20 AC 177 ms
22,528 KB
testcase_21 AC 177 ms
22,528 KB
testcase_22 AC 178 ms
22,656 KB
testcase_23 AC 182 ms
22,656 KB
testcase_24 AC 141 ms
19,072 KB
testcase_25 AC 123 ms
17,024 KB
testcase_26 AC 111 ms
15,360 KB
testcase_27 AC 108 ms
14,720 KB
testcase_28 AC 134 ms
18,944 KB
testcase_29 AC 128 ms
17,536 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Syntax OK

ソースコード

diff #

s=gets.chomp.split("").map{|e| e.to_i}.sort.reverse
s2=s.size-1
ans=-1
ok=false
s2.downto(1){|i|
	j=i-1
	if s[i]!=s[j] then
		s[i],s[j]=s[j],s[i]
		ok=true
		break
	end
}
ans=s.join("") if ok && s[0]!=0
puts ans
0