結果

問題 No.927 Second Permutation
ユーザー matrie
提出日時 2020-12-16 07:09:18
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 188 bytes
コンパイル時間 120 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 18,460 KB
最終ジャッジ日時 2024-09-20 04:28:58
合計ジャッジ時間 23,915 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 21 TLE * 1 -- * 5
権限があれば一括ダウンロードができます

ソースコード

diff #

s=list(map(int,list(input())))
s=sorted(s)[::-1]
l=[x for x in s]
x=-1
for i in range(1,len(s)):
	l[-i],l[-i-1]=l[-i-1],l[-i]
	if l!=s and l[0]!=0: 
		x=''.join(map(str,l)); break
print(x)
0