結果

問題 No.927 Second Permutation
ユーザー uni_pythonuni_python
提出日時 2020-11-08 15:37:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 71 ms / 2,000 ms
コード長 487 bytes
コンパイル時間 157 ms
コンパイル使用メモリ 82,448 KB
実行使用メモリ 65,408 KB
最終ジャッジ日時 2024-07-22 15:08:37
合計ジャッジ時間 2,904 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
51,712 KB
testcase_01 AC 37 ms
51,712 KB
testcase_02 AC 36 ms
51,840 KB
testcase_03 AC 36 ms
52,352 KB
testcase_04 AC 34 ms
51,840 KB
testcase_05 AC 34 ms
51,712 KB
testcase_06 AC 36 ms
52,096 KB
testcase_07 AC 36 ms
52,096 KB
testcase_08 AC 49 ms
61,184 KB
testcase_09 AC 40 ms
58,112 KB
testcase_10 AC 55 ms
62,464 KB
testcase_11 AC 71 ms
64,384 KB
testcase_12 AC 51 ms
61,696 KB
testcase_13 AC 40 ms
58,368 KB
testcase_14 AC 55 ms
62,208 KB
testcase_15 AC 50 ms
61,696 KB
testcase_16 AC 68 ms
65,280 KB
testcase_17 AC 68 ms
65,024 KB
testcase_18 AC 66 ms
65,152 KB
testcase_19 AC 70 ms
65,408 KB
testcase_20 AC 69 ms
65,280 KB
testcase_21 AC 69 ms
65,280 KB
testcase_22 AC 69 ms
65,152 KB
testcase_23 AC 71 ms
65,152 KB
testcase_24 AC 41 ms
57,344 KB
testcase_25 AC 40 ms
55,680 KB
testcase_26 AC 37 ms
54,708 KB
testcase_27 AC 37 ms
53,760 KB
testcase_28 AC 39 ms
56,704 KB
testcase_29 AC 39 ms
55,936 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def I(): return int(input())
def MI(): return map(int, input().split())
def LI(): return list(map(int, input().split()))

S=list(input())
N=len(S)

# 1種類だとダメ
S2=set(S)
if len(S2)==1:
    print(-1)
    exit()

# 最上位以外全部0だとダメ
cnt=S.count("0")
if cnt==N-1:
    print(-1)
    exit()
# print(cnt)
    
    
S.sort(reverse=True)

for i in range(N-1,0,-1):
    if S[i]!=S[i-1]:
        S[i],S[i-1]=S[i-1],S[i]
        break
    
print(''.join(map(str, S)))


0