結果

問題 No.927 Second Permutation
ユーザー pluto77pluto77
提出日時 2019-12-04 10:11:34
言語 Python2
(2.7.18)
結果
AC  
実行時間 61 ms / 2,000 ms
コード長 259 bytes
コンパイル時間 628 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 11,004 KB
最終ジャッジ日時 2024-05-07 07:53:45
合計ジャッジ時間 2,579 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 12 ms
6,144 KB
testcase_01 AC 12 ms
6,272 KB
testcase_02 AC 11 ms
6,272 KB
testcase_03 AC 11 ms
6,400 KB
testcase_04 AC 11 ms
6,272 KB
testcase_05 AC 11 ms
6,144 KB
testcase_06 AC 12 ms
6,272 KB
testcase_07 AC 11 ms
6,272 KB
testcase_08 AC 28 ms
7,808 KB
testcase_09 AC 13 ms
6,400 KB
testcase_10 AC 38 ms
8,736 KB
testcase_11 AC 56 ms
9,876 KB
testcase_12 AC 31 ms
8,124 KB
testcase_13 AC 15 ms
6,784 KB
testcase_14 AC 39 ms
9,012 KB
testcase_15 AC 31 ms
7,884 KB
testcase_16 AC 60 ms
10,880 KB
testcase_17 AC 60 ms
10,880 KB
testcase_18 AC 60 ms
10,876 KB
testcase_19 AC 61 ms
10,876 KB
testcase_20 AC 60 ms
10,752 KB
testcase_21 AC 61 ms
11,004 KB
testcase_22 AC 61 ms
10,880 KB
testcase_23 AC 60 ms
11,004 KB
testcase_24 AC 21 ms
7,808 KB
testcase_25 AC 18 ms
7,296 KB
testcase_26 AC 16 ms
6,912 KB
testcase_27 AC 15 ms
6,944 KB
testcase_28 AC 20 ms
7,808 KB
testcase_29 AC 18 ms
7,424 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yuki927
import sys

x=[c for c in raw_input()]
x=sorted(x,reverse=True)
if x[0]==x[-1] or x[1]=='0':
 print -1
 sys.exit()
for i in range(len(x)-1,0,-1):
 if x[i]!=x[i-1]:
  x[i],x[i-1]=x[i-1],x[i]
  break
res=''
for i in range(len(x)):
 res+=x[i]
print res
0