結果

問題 No.927 Second Permutation
ユーザー H20H20
提出日時 2021-11-03 01:43:25
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 210 bytes
コンパイル時間 304 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 68,472 KB
最終ジャッジ日時 2024-10-12 09:39:42
合計ジャッジ時間 3,119 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,468 KB
testcase_01 AC 37 ms
52,096 KB
testcase_02 AC 38 ms
52,952 KB
testcase_03 AC 38 ms
52,336 KB
testcase_04 AC 38 ms
52,736 KB
testcase_05 AC 37 ms
52,544 KB
testcase_06 AC 37 ms
52,580 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 44 ms
65,096 KB
testcase_25 AC 44 ms
62,816 KB
testcase_26 AC 43 ms
62,528 KB
testcase_27 AC 42 ms
60,820 KB
testcase_28 AC 45 ms
64,644 KB
testcase_29 AC 44 ms
63,204 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[i]!='0':
            print(''.join(X))
            exit()
print(-1)

0