結果

問題 No.927 Second Permutation
ユーザー tamatotamato
提出日時 2019-11-22 21:29:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 93 ms / 2,000 ms
コード長 336 bytes
コンパイル時間 181 ms
コンパイル使用メモリ 82,188 KB
実行使用メモリ 75,148 KB
最終ジャッジ日時 2024-10-11 02:52:00
合計ジャッジ時間 3,166 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 46 ms
53,504 KB
testcase_01 AC 45 ms
53,376 KB
testcase_02 AC 45 ms
53,504 KB
testcase_03 AC 45 ms
53,376 KB
testcase_04 AC 45 ms
53,760 KB
testcase_05 AC 45 ms
53,248 KB
testcase_06 AC 46 ms
53,888 KB
testcase_07 AC 47 ms
54,016 KB
testcase_08 AC 68 ms
65,664 KB
testcase_09 AC 51 ms
60,416 KB
testcase_10 AC 72 ms
68,608 KB
testcase_11 AC 85 ms
73,856 KB
testcase_12 AC 67 ms
66,944 KB
testcase_13 AC 53 ms
61,312 KB
testcase_14 AC 72 ms
68,992 KB
testcase_15 AC 67 ms
67,200 KB
testcase_16 AC 89 ms
75,008 KB
testcase_17 AC 93 ms
75,008 KB
testcase_18 AC 89 ms
75,148 KB
testcase_19 AC 91 ms
75,008 KB
testcase_20 AC 88 ms
75,008 KB
testcase_21 AC 88 ms
74,960 KB
testcase_22 AC 87 ms
75,068 KB
testcase_23 AC 87 ms
75,136 KB
testcase_24 AC 57 ms
67,584 KB
testcase_25 AC 55 ms
64,640 KB
testcase_26 AC 53 ms
63,232 KB
testcase_27 AC 59 ms
65,024 KB
testcase_28 AC 68 ms
71,936 KB
testcase_29 AC 62 ms
70,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter

x = input()
c = Counter(x)

if len(c.keys()) == 1:
    print(-1)
    exit()

ans = sorted(x, reverse=True)
for i in range(len(ans)-1, -1, -1):
    if ans[i] != ans[i-1]:
        ans[i], ans[i-1] = ans[i-1], ans[i]
        break

if ans[0] == '0':
    print(-1)
    exit()

print(''.join(map(str, ans)))
0