結果

問題 No.927 Second Permutation
ユーザー akitsugu777akitsugu777
提出日時 2020-06-22 15:45:45
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 150 bytes
コンパイル時間 282 ms
コンパイル使用メモリ 10,716 KB
実行使用メモリ 9,620 KB
最終ジャッジ日時 2023-09-16 19:14:29
合計ジャッジ時間 2,070 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 16 ms
7,852 KB
testcase_01 AC 15 ms
7,912 KB
testcase_02 AC 15 ms
7,796 KB
testcase_03 AC 16 ms
7,748 KB
testcase_04 AC 14 ms
7,852 KB
testcase_05 AC 14 ms
7,832 KB
testcase_06 AC 14 ms
7,752 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 20 ms
9,412 KB
testcase_25 AC 17 ms
8,840 KB
testcase_26 AC 16 ms
8,692 KB
testcase_27 AC 17 ms
8,276 KB
testcase_28 AC 19 ms
9,312 KB
testcase_29 AC 16 ms
9,116 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

X = sorted(input())[::-1]
if len(set(X)) == 1 or len(X) - X.count('0') <= 1:
    print(-1)
else:
    X[-1], X[-2] = X[-2], X[-1]
    print(''.join(X))
0