結果

問題 No.927 Second Permutation
ユーザー Omura ShunsukeOmura Shunsuke
提出日時 2020-05-01 09:18:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 87 ms / 2,000 ms
コード長 272 bytes
コンパイル時間 185 ms
コンパイル使用メモリ 82,648 KB
実行使用メモリ 80,896 KB
最終ジャッジ日時 2024-06-02 11:59:52
合計ジャッジ時間 2,739 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,248 KB
testcase_01 AC 35 ms
53,120 KB
testcase_02 AC 35 ms
53,760 KB
testcase_03 AC 35 ms
54,472 KB
testcase_04 AC 35 ms
54,076 KB
testcase_05 AC 36 ms
54,260 KB
testcase_06 AC 35 ms
54,500 KB
testcase_07 AC 36 ms
54,100 KB
testcase_08 AC 53 ms
68,348 KB
testcase_09 AC 41 ms
60,928 KB
testcase_10 AC 60 ms
72,064 KB
testcase_11 AC 73 ms
78,592 KB
testcase_12 AC 54 ms
69,632 KB
testcase_13 AC 42 ms
61,824 KB
testcase_14 AC 61 ms
73,216 KB
testcase_15 AC 54 ms
69,632 KB
testcase_16 AC 77 ms
80,512 KB
testcase_17 AC 76 ms
80,384 KB
testcase_18 AC 77 ms
80,640 KB
testcase_19 AC 76 ms
80,640 KB
testcase_20 AC 77 ms
80,896 KB
testcase_21 AC 77 ms
80,384 KB
testcase_22 AC 87 ms
80,640 KB
testcase_23 AC 76 ms
80,512 KB
testcase_24 AC 55 ms
79,360 KB
testcase_25 AC 50 ms
73,984 KB
testcase_26 AC 47 ms
70,400 KB
testcase_27 AC 47 ms
65,920 KB
testcase_28 AC 52 ms
72,984 KB
testcase_29 AC 50 ms
71,040 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