結果

問題 No.927 Second Permutation
ユーザー Omura ShunsukeOmura Shunsuke
提出日時 2020-05-01 09:18:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 101 ms / 2,000 ms
コード長 272 bytes
コンパイル時間 186 ms
コンパイル使用メモリ 82,232 KB
実行使用メモリ 80,768 KB
最終ジャッジ日時 2024-12-23 09:21:30
合計ジャッジ時間 3,470 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 50 ms
53,376 KB
testcase_01 AC 48 ms
53,120 KB
testcase_02 AC 48 ms
53,248 KB
testcase_03 AC 45 ms
53,120 KB
testcase_04 AC 48 ms
53,120 KB
testcase_05 AC 49 ms
53,248 KB
testcase_06 AC 46 ms
53,120 KB
testcase_07 AC 46 ms
53,120 KB
testcase_08 AC 66 ms
67,968 KB
testcase_09 AC 52 ms
61,056 KB
testcase_10 AC 80 ms
72,064 KB
testcase_11 AC 93 ms
78,336 KB
testcase_12 AC 71 ms
69,888 KB
testcase_13 AC 55 ms
62,336 KB
testcase_14 AC 77 ms
72,704 KB
testcase_15 AC 70 ms
69,376 KB
testcase_16 AC 99 ms
80,768 KB
testcase_17 AC 99 ms
80,640 KB
testcase_18 AC 98 ms
80,128 KB
testcase_19 AC 100 ms
80,640 KB
testcase_20 AC 101 ms
80,384 KB
testcase_21 AC 98 ms
80,384 KB
testcase_22 AC 99 ms
80,768 KB
testcase_23 AC 99 ms
80,768 KB
testcase_24 AC 70 ms
79,616 KB
testcase_25 AC 66 ms
73,984 KB
testcase_26 AC 66 ms
70,528 KB
testcase_27 AC 60 ms
65,920 KB
testcase_28 AC 67 ms
72,192 KB
testcase_29 AC 64 ms
70,784 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S=list(input())
S.sort(reverse=True)

import copy
s=copy.deepcopy(S)

for i in range(1,len(S)):
    if s[-1-(i-1)] != s[-1-i]:
        s[-1-(i-1)],s[-1-i] = s[-1-i],s[-1-(i-1)]
        break
if s[0]=="0":
    print(-1)
elif S!=s:
    print("".join(s))
else:
    print(-1)
0