結果

問題 No.927 Second Permutation
ユーザー もりをもりを
提出日時 2019-11-22 21:27:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 71 ms / 2,000 ms
コード長 304 bytes
コンパイル時間 380 ms
コンパイル使用メモリ 81,912 KB
実行使用メモリ 67,280 KB
最終ジャッジ日時 2024-10-11 02:49:44
合計ジャッジ時間 2,862 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,756 KB
testcase_01 AC 37 ms
52,788 KB
testcase_02 AC 38 ms
52,508 KB
testcase_03 AC 38 ms
52,360 KB
testcase_04 AC 37 ms
52,292 KB
testcase_05 AC 38 ms
52,436 KB
testcase_06 AC 37 ms
52,576 KB
testcase_07 AC 38 ms
52,188 KB
testcase_08 AC 49 ms
60,992 KB
testcase_09 AC 38 ms
53,780 KB
testcase_10 AC 56 ms
62,196 KB
testcase_11 AC 67 ms
65,340 KB
testcase_12 AC 52 ms
61,604 KB
testcase_13 AC 39 ms
53,084 KB
testcase_14 AC 58 ms
62,876 KB
testcase_15 AC 51 ms
61,308 KB
testcase_16 AC 70 ms
67,280 KB
testcase_17 AC 70 ms
66,792 KB
testcase_18 AC 70 ms
65,892 KB
testcase_19 AC 69 ms
65,848 KB
testcase_20 AC 69 ms
66,860 KB
testcase_21 AC 69 ms
66,544 KB
testcase_22 AC 71 ms
65,992 KB
testcase_23 AC 71 ms
66,344 KB
testcase_24 AC 47 ms
64,904 KB
testcase_25 AC 45 ms
62,580 KB
testcase_26 AC 44 ms
61,412 KB
testcase_27 AC 43 ms
61,628 KB
testcase_28 AC 46 ms
64,308 KB
testcase_29 AC 46 ms
63,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s = list(input())
n = len(s)
s = sorted(s)[::-1]

for i in range(n - 1):
    # s[-1-i]とs[-2-i]
    if s[-1-i] == s[-2-i]:
        continue
    s[-1-i], s[-2-i] = s[-2-i], s[-1-i]
    if s[0] == '0':
        s[-1-i], s[-2-i] = s[-2-i], s[-1-i]
        continue
    print(''.join(s))
    exit()
print(-1)
0