結果

問題 No.927 Second Permutation
ユーザー 👑 rin204rin204
提出日時 2020-08-24 17:28:58
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
(最新)
AC  
(最初)
実行時間 -
コード長 307 bytes
コンパイル時間 92 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 12,032 KB
最終ジャッジ日時 2024-04-24 03:38:06
合計ジャッジ時間 2,559 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
10,752 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 31 ms
10,624 KB
testcase_03 AC 30 ms
10,496 KB
testcase_04 AC 32 ms
10,496 KB
testcase_05 AC 31 ms
10,496 KB
testcase_06 AC 31 ms
10,624 KB
testcase_07 AC 30 ms
10,752 KB
testcase_08 RE -
testcase_09 AC 32 ms
10,752 KB
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 AC 35 ms
11,648 KB
testcase_25 AC 33 ms
11,264 KB
testcase_26 AC 32 ms
11,136 KB
testcase_27 AC 32 ms
11,136 KB
testcase_28 AC 35 ms
11,392 KB
testcase_29 AC 34 ms
11,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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