結果

問題 No.927 Second Permutation
ユーザー ohanaohana
提出日時 2023-10-30 15:29:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 83 ms / 2,000 ms
コード長 273 bytes
コンパイル時間 270 ms
コンパイル使用メモリ 82,448 KB
実行使用メモリ 72,064 KB
最終ジャッジ日時 2024-09-25 17:16:51
合計ジャッジ時間 2,920 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,304 KB
testcase_01 AC 40 ms
51,840 KB
testcase_02 AC 39 ms
52,276 KB
testcase_03 AC 39 ms
51,840 KB
testcase_04 AC 39 ms
51,840 KB
testcase_05 AC 40 ms
51,968 KB
testcase_06 AC 39 ms
52,224 KB
testcase_07 AC 40 ms
51,456 KB
testcase_08 AC 56 ms
63,104 KB
testcase_09 AC 43 ms
57,344 KB
testcase_10 AC 64 ms
65,740 KB
testcase_11 AC 76 ms
71,168 KB
testcase_12 AC 60 ms
64,384 KB
testcase_13 AC 48 ms
58,496 KB
testcase_14 AC 67 ms
66,304 KB
testcase_15 AC 59 ms
64,512 KB
testcase_16 AC 82 ms
71,808 KB
testcase_17 AC 80 ms
71,296 KB
testcase_18 AC 83 ms
71,168 KB
testcase_19 AC 81 ms
71,680 KB
testcase_20 AC 80 ms
72,064 KB
testcase_21 AC 80 ms
71,168 KB
testcase_22 AC 80 ms
71,552 KB
testcase_23 AC 80 ms
71,296 KB
testcase_24 AC 43 ms
56,832 KB
testcase_25 AC 42 ms
55,296 KB
testcase_26 AC 43 ms
54,144 KB
testcase_27 AC 44 ms
59,008 KB
testcase_28 AC 49 ms
61,568 KB
testcase_29 AC 47 ms
61,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

A = list(input())

if len(set(A)) == 1 or len([a for a in A if a != "0"]) == 1:
    print(-1)
else:
    A.sort()
    for i in range(len(A) - 1):
        if A[i] != A[i + 1]:
            A[i], A[i + 1] = A[i + 1], A[i]
            print("".join(A)[::-1])
            break

0