結果

問題 No.927 Second Permutation
ユーザー miya145592miya145592
提出日時 2023-05-21 04:02:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 69 ms / 2,000 ms
コード長 234 bytes
コンパイル時間 179 ms
コンパイル使用メモリ 82,720 KB
実行使用メモリ 66,124 KB
最終ジャッジ日時 2024-06-01 09:33:54
合計ジャッジ時間 3,217 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,352 KB
testcase_01 AC 39 ms
52,360 KB
testcase_02 AC 38 ms
52,240 KB
testcase_03 AC 38 ms
53,184 KB
testcase_04 AC 37 ms
53,436 KB
testcase_05 AC 38 ms
52,400 KB
testcase_06 AC 37 ms
52,884 KB
testcase_07 AC 38 ms
52,188 KB
testcase_08 AC 51 ms
62,164 KB
testcase_09 AC 41 ms
52,364 KB
testcase_10 AC 58 ms
62,316 KB
testcase_11 AC 67 ms
63,968 KB
testcase_12 AC 53 ms
61,092 KB
testcase_13 AC 40 ms
52,504 KB
testcase_14 AC 57 ms
62,476 KB
testcase_15 AC 52 ms
61,628 KB
testcase_16 AC 68 ms
66,124 KB
testcase_17 AC 69 ms
65,372 KB
testcase_18 AC 68 ms
65,600 KB
testcase_19 AC 68 ms
64,544 KB
testcase_20 AC 67 ms
65,048 KB
testcase_21 AC 68 ms
64,972 KB
testcase_22 AC 68 ms
64,720 KB
testcase_23 AC 69 ms
64,820 KB
testcase_24 AC 45 ms
63,152 KB
testcase_25 AC 43 ms
61,400 KB
testcase_26 AC 45 ms
60,680 KB
testcase_27 AC 44 ms
59,900 KB
testcase_28 AC 47 ms
62,608 KB
testcase_29 AC 46 ms
62,164 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

X = list(input())
X.sort(reverse=True)
for i in range(len(X)-1, 0, -1):
    if X[i]!=X[i-1]:
        if X[i]=="0" and i-1==0:
            continue
        X[i], X[i-1] = X[i-1], X[i]
        print("".join(X))
        exit()
print(-1)
0