結果

問題 No.927 Second Permutation
ユーザー 👑 rin204rin204
提出日時 2023-04-21 23:22:41
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 119 ms / 2,000 ms
コード長 357 bytes
コンパイル時間 145 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 80,256 KB
最終ジャッジ日時 2024-04-24 09:21:13
合計ジャッジ時間 3,250 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,584 KB
testcase_01 AC 35 ms
51,840 KB
testcase_02 AC 34 ms
51,456 KB
testcase_03 AC 35 ms
51,712 KB
testcase_04 AC 35 ms
51,840 KB
testcase_05 AC 36 ms
51,840 KB
testcase_06 AC 35 ms
51,712 KB
testcase_07 AC 35 ms
51,456 KB
testcase_08 AC 60 ms
72,704 KB
testcase_09 AC 40 ms
57,344 KB
testcase_10 AC 79 ms
77,696 KB
testcase_11 AC 108 ms
79,616 KB
testcase_12 AC 73 ms
76,928 KB
testcase_13 AC 44 ms
58,880 KB
testcase_14 AC 87 ms
77,824 KB
testcase_15 AC 77 ms
76,800 KB
testcase_16 AC 119 ms
80,256 KB
testcase_17 AC 117 ms
79,872 KB
testcase_18 AC 111 ms
79,872 KB
testcase_19 AC 111 ms
80,128 KB
testcase_20 AC 109 ms
80,000 KB
testcase_21 AC 113 ms
80,000 KB
testcase_22 AC 110 ms
79,872 KB
testcase_23 AC 109 ms
80,128 KB
testcase_24 AC 41 ms
61,440 KB
testcase_25 AC 42 ms
59,904 KB
testcase_26 AC 40 ms
59,520 KB
testcase_27 AC 39 ms
58,752 KB
testcase_28 AC 41 ms
61,056 KB
testcase_29 AC 40 ms
60,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys


sys.set_int_max_str_digits(10 ** 9)

x = input()
lst = [i for i in x]
lst.sort(reverse = True)
if lst[0] == lst[-1] or lst[1] == "0":
    print(-1)
    exit()
l = len(lst)
for i in range(l - 1, 0, -1):
    if lst[i] == lst[i - 1]:
        continue
    else:
        lst[i], lst[i - 1] = lst[i - 1], lst[i]
        break
print(int("".join(lst)))
0