結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,224 KB
testcase_01 AC 40 ms
51,712 KB
testcase_02 AC 40 ms
51,968 KB
testcase_03 AC 41 ms
51,840 KB
testcase_04 AC 40 ms
51,456 KB
testcase_05 AC 39 ms
51,968 KB
testcase_06 AC 39 ms
51,584 KB
testcase_07 AC 39 ms
51,840 KB
testcase_08 AC 56 ms
63,616 KB
testcase_09 AC 42 ms
57,728 KB
testcase_10 AC 64 ms
65,920 KB
testcase_11 AC 78 ms
71,296 KB
testcase_12 AC 59 ms
64,000 KB
testcase_13 AC 46 ms
58,496 KB
testcase_14 AC 67 ms
66,688 KB
testcase_15 AC 59 ms
63,744 KB
testcase_16 AC 81 ms
71,808 KB
testcase_17 AC 82 ms
71,936 KB
testcase_18 AC 81 ms
71,424 KB
testcase_19 AC 81 ms
72,064 KB
testcase_20 AC 83 ms
71,808 KB
testcase_21 AC 84 ms
71,552 KB
testcase_22 AC 82 ms
71,296 KB
testcase_23 AC 83 ms
71,424 KB
testcase_24 AC 44 ms
56,576 KB
testcase_25 AC 44 ms
55,296 KB
testcase_26 AC 42 ms
54,056 KB
testcase_27 AC 44 ms
58,752 KB
testcase_28 AC 48 ms
62,336 KB
testcase_29 AC 46 ms
60,672 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
    else:
        print(-1)
0