結果

問題 No.927 Second Permutation
ユーザー gorugo30gorugo30
提出日時 2021-02-24 22:46:31
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 71 ms / 2,000 ms
コード長 223 bytes
コンパイル時間 617 ms
コンパイル使用メモリ 82,528 KB
実行使用メモリ 64,728 KB
最終ジャッジ日時 2024-09-24 23:37:10
合計ジャッジ時間 3,442 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,356 KB
testcase_01 AC 39 ms
52,832 KB
testcase_02 AC 41 ms
52,332 KB
testcase_03 AC 45 ms
52,612 KB
testcase_04 AC 38 ms
52,424 KB
testcase_05 AC 39 ms
52,212 KB
testcase_06 AC 38 ms
53,076 KB
testcase_07 AC 38 ms
51,756 KB
testcase_08 AC 49 ms
60,148 KB
testcase_09 AC 38 ms
52,060 KB
testcase_10 AC 56 ms
61,916 KB
testcase_11 AC 66 ms
63,544 KB
testcase_12 AC 51 ms
59,912 KB
testcase_13 AC 39 ms
52,784 KB
testcase_14 AC 56 ms
62,548 KB
testcase_15 AC 51 ms
61,352 KB
testcase_16 AC 70 ms
64,360 KB
testcase_17 AC 69 ms
63,840 KB
testcase_18 AC 70 ms
64,728 KB
testcase_19 AC 71 ms
63,388 KB
testcase_20 AC 69 ms
63,448 KB
testcase_21 AC 69 ms
63,912 KB
testcase_22 AC 69 ms
64,188 KB
testcase_23 AC 69 ms
64,712 KB
testcase_24 AC 42 ms
57,204 KB
testcase_25 AC 40 ms
56,368 KB
testcase_26 AC 40 ms
56,276 KB
testcase_27 AC 39 ms
54,920 KB
testcase_28 AC 42 ms
57,576 KB
testcase_29 AC 41 ms
55,876 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

X = list(input())
X.sort(reverse = True)
if X.count("0") == len(X) - 1 or X.count(X[0]) == len(X):
    print(-1)
    exit()
i = len(X) - 1
while X[i] == X[i - 1]:
    i -= 1
X[i], X[i - 1] = X[i - 1], X[i]
print("".join(X))
0