結果

問題 No.927 Second Permutation
ユーザー YamadaYamada
提出日時 2019-11-25 20:18:31
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 92 ms / 2,000 ms
コード長 248 bytes
コンパイル時間 112 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 18,084 KB
最終ジャッジ日時 2024-10-14 13:37:54
合計ジャッジ時間 3,030 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 30 ms
10,624 KB
testcase_06 AC 31 ms
10,752 KB
testcase_07 AC 30 ms
10,752 KB
testcase_08 AC 51 ms
13,312 KB
testcase_09 AC 32 ms
10,752 KB
testcase_10 AC 63 ms
14,824 KB
testcase_11 AC 86 ms
17,528 KB
testcase_12 AC 55 ms
13,696 KB
testcase_13 AC 36 ms
11,136 KB
testcase_14 AC 66 ms
15,068 KB
testcase_15 AC 55 ms
13,696 KB
testcase_16 AC 91 ms
17,744 KB
testcase_17 AC 90 ms
17,828 KB
testcase_18 AC 89 ms
18,084 KB
testcase_19 AC 90 ms
17,952 KB
testcase_20 AC 89 ms
18,084 KB
testcase_21 AC 92 ms
18,084 KB
testcase_22 AC 88 ms
17,952 KB
testcase_23 AC 89 ms
17,956 KB
testcase_24 AC 72 ms
11,904 KB
testcase_25 AC 60 ms
11,392 KB
testcase_26 AC 52 ms
11,392 KB
testcase_27 AC 46 ms
11,264 KB
testcase_28 AC 69 ms
11,648 KB
testcase_29 AC 61 ms
11,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

X = [int(i) for i in input()]
X.sort()
s = True
for i in range(len(X)-1):
    if X[i] != X[i+1]:
        X[i],X[i+1] = X[i+1],X[i]
        s = False
        break
if s or X[-1] ==0:
    print(-1)
else:
    print("".join([str(i) for i in X[::-1]]))
0