結果

問題 No.927 Second Permutation
ユーザー deideirodeideiro
提出日時 2019-11-22 22:10:16
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 119 ms / 2,000 ms
コード長 262 bytes
コンパイル時間 201 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 14,728 KB
最終ジャッジ日時 2024-10-11 03:49:29
合計ジャッジ時間 3,564 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
10,752 KB
testcase_01 AC 32 ms
10,752 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 30 ms
10,880 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 30 ms
10,624 KB
testcase_06 AC 31 ms
10,624 KB
testcase_07 AC 30 ms
10,752 KB
testcase_08 AC 61 ms
12,168 KB
testcase_09 AC 33 ms
11,008 KB
testcase_10 AC 79 ms
12,824 KB
testcase_11 AC 109 ms
14,208 KB
testcase_12 AC 67 ms
12,492 KB
testcase_13 AC 36 ms
11,008 KB
testcase_14 AC 80 ms
13,004 KB
testcase_15 AC 68 ms
12,484 KB
testcase_16 AC 119 ms
14,648 KB
testcase_17 AC 119 ms
14,604 KB
testcase_18 AC 118 ms
14,604 KB
testcase_19 AC 117 ms
14,600 KB
testcase_20 AC 117 ms
14,596 KB
testcase_21 AC 117 ms
14,600 KB
testcase_22 AC 118 ms
14,724 KB
testcase_23 AC 116 ms
14,728 KB
testcase_24 AC 83 ms
12,920 KB
testcase_25 AC 65 ms
12,416 KB
testcase_26 AC 55 ms
11,904 KB
testcase_27 AC 51 ms
11,520 KB
testcase_28 AC 78 ms
12,800 KB
testcase_29 AC 67 ms
12,416 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#yukicoder
import copy
X = list(input())
X = sorted(X)[::-1]
XX = copy.deepcopy(X)

for i in range(len(X)-1,0,-1):
    if XX[i] != XX[i-1]:
        XX[i],XX[i-1] = XX[i-1],XX[i]
        break
if XX[0] == "0" or X == XX:
    print(-1)
else:
    print(*XX,sep="")
0