結果

問題 No.927 Second Permutation
ユーザー H20H20
提出日時 2021-11-03 02:00:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 71 ms / 2,000 ms
コード長 209 bytes
コンパイル時間 449 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 64,640 KB
最終ジャッジ日時 2024-10-12 10:02:12
合計ジャッジ時間 2,967 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,456 KB
testcase_01 AC 38 ms
52,352 KB
testcase_02 AC 37 ms
51,712 KB
testcase_03 AC 38 ms
51,456 KB
testcase_04 AC 38 ms
51,712 KB
testcase_05 AC 39 ms
52,224 KB
testcase_06 AC 38 ms
51,840 KB
testcase_07 AC 38 ms
52,224 KB
testcase_08 AC 50 ms
60,160 KB
testcase_09 AC 40 ms
52,160 KB
testcase_10 AC 56 ms
61,696 KB
testcase_11 AC 66 ms
63,488 KB
testcase_12 AC 53 ms
60,672 KB
testcase_13 AC 40 ms
52,608 KB
testcase_14 AC 57 ms
61,184 KB
testcase_15 AC 52 ms
60,800 KB
testcase_16 AC 70 ms
64,640 KB
testcase_17 AC 70 ms
64,128 KB
testcase_18 AC 71 ms
64,512 KB
testcase_19 AC 71 ms
64,128 KB
testcase_20 AC 71 ms
64,000 KB
testcase_21 AC 70 ms
63,872 KB
testcase_22 AC 70 ms
64,384 KB
testcase_23 AC 71 ms
64,128 KB
testcase_24 AC 47 ms
64,384 KB
testcase_25 AC 47 ms
61,824 KB
testcase_26 AC 46 ms
61,056 KB
testcase_27 AC 46 ms
60,800 KB
testcase_28 AC 47 ms
63,616 KB
testcase_29 AC 48 ms
62,720 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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