結果

問題 No.927 Second Permutation
ユーザー shamioshamio
提出日時 2020-06-02 17:12:06
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 110 ms / 2,000 ms
コード長 253 bytes
コンパイル時間 85 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 14,540 KB
最終ジャッジ日時 2024-05-03 06:23:21
合計ジャッジ時間 3,148 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 31 ms
10,752 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 32 ms
10,624 KB
testcase_04 AC 32 ms
10,752 KB
testcase_05 AC 31 ms
10,752 KB
testcase_06 AC 31 ms
10,752 KB
testcase_07 AC 32 ms
10,752 KB
testcase_08 AC 59 ms
12,416 KB
testcase_09 AC 33 ms
10,880 KB
testcase_10 AC 74 ms
12,860 KB
testcase_11 AC 101 ms
14,072 KB
testcase_12 AC 66 ms
12,544 KB
testcase_13 AC 37 ms
11,392 KB
testcase_14 AC 75 ms
12,888 KB
testcase_15 AC 64 ms
12,544 KB
testcase_16 AC 108 ms
14,284 KB
testcase_17 AC 107 ms
14,240 KB
testcase_18 AC 108 ms
14,408 KB
testcase_19 AC 110 ms
14,540 KB
testcase_20 AC 108 ms
14,284 KB
testcase_21 AC 108 ms
14,236 KB
testcase_22 AC 109 ms
14,288 KB
testcase_23 AC 110 ms
14,364 KB
testcase_24 AC 65 ms
11,648 KB
testcase_25 AC 53 ms
11,520 KB
testcase_26 AC 49 ms
11,264 KB
testcase_27 AC 44 ms
11,264 KB
testcase_28 AC 63 ms
11,648 KB
testcase_29 AC 56 ms
11,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

x = list(map(int, input()))
l = len(x)

x.sort(reverse=True)
for i in range(l - 1, 0, -1):
    if x[i] != x[i-1]:
        x[i], x[i-1] = x[i-1], x[i]
        break

else:
    print(-1)
    exit()

if x[0] == 0:
    print(-1)
else:
    print(*x, sep="")
0