結果

問題 No.927 Second Permutation
ユーザー tamatotamato
提出日時 2019-11-22 21:28:05
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 334 bytes
コンパイル時間 258 ms
コンパイル使用メモリ 82,600 KB
実行使用メモリ 76,448 KB
最終ジャッジ日時 2024-10-11 02:50:58
合計ジャッジ時間 2,918 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
54,740 KB
testcase_01 AC 41 ms
54,296 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 40 ms
53,240 KB
testcase_06 AC 40 ms
54,920 KB
testcase_07 AC 40 ms
54,036 KB
testcase_08 AC 61 ms
67,092 KB
testcase_09 AC 46 ms
60,624 KB
testcase_10 AC 64 ms
69,852 KB
testcase_11 AC 76 ms
75,092 KB
testcase_12 AC 62 ms
67,764 KB
testcase_13 AC 46 ms
62,312 KB
testcase_14 AC 65 ms
69,888 KB
testcase_15 AC 59 ms
68,752 KB
testcase_16 AC 79 ms
76,448 KB
testcase_17 AC 81 ms
75,140 KB
testcase_18 AC 81 ms
75,920 KB
testcase_19 AC 80 ms
75,096 KB
testcase_20 AC 81 ms
75,252 KB
testcase_21 AC 82 ms
75,512 KB
testcase_22 AC 81 ms
75,428 KB
testcase_23 AC 79 ms
76,132 KB
testcase_24 AC 50 ms
67,884 KB
testcase_25 AC 49 ms
65,880 KB
testcase_26 AC 48 ms
63,852 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
権限があれば一括ダウンロードができます

ソースコード

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