結果

問題 No.927 Second Permutation
ユーザー dangodango
提出日時 2023-06-16 20:15:42
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 101 ms / 2,000 ms
コード長 170 bytes
コンパイル時間 304 ms
コンパイル使用メモリ 81,972 KB
実行使用メモリ 89,120 KB
最終ジャッジ日時 2024-06-24 12:03:38
合計ジャッジ時間 3,508 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
53,004 KB
testcase_01 AC 36 ms
52,936 KB
testcase_02 AC 37 ms
51,940 KB
testcase_03 AC 38 ms
52,188 KB
testcase_04 AC 37 ms
52,884 KB
testcase_05 AC 38 ms
52,516 KB
testcase_06 AC 38 ms
53,312 KB
testcase_07 AC 38 ms
52,556 KB
testcase_08 AC 59 ms
71,292 KB
testcase_09 AC 48 ms
62,000 KB
testcase_10 AC 67 ms
75,296 KB
testcase_11 AC 94 ms
87,728 KB
testcase_12 AC 62 ms
73,428 KB
testcase_13 AC 48 ms
62,080 KB
testcase_14 AC 71 ms
76,716 KB
testcase_15 AC 62 ms
72,132 KB
testcase_16 AC 100 ms
88,928 KB
testcase_17 AC 98 ms
88,520 KB
testcase_18 AC 101 ms
89,120 KB
testcase_19 AC 98 ms
88,600 KB
testcase_20 AC 100 ms
88,816 KB
testcase_21 AC 98 ms
88,688 KB
testcase_22 AC 101 ms
88,316 KB
testcase_23 AC 101 ms
88,592 KB
testcase_24 AC 42 ms
58,536 KB
testcase_25 AC 40 ms
55,144 KB
testcase_26 AC 39 ms
54,684 KB
testcase_27 AC 40 ms
54,212 KB
testcase_28 AC 43 ms
57,492 KB
testcase_29 AC 42 ms
56,108 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

X = sorted(input())
N = sorted(set(X))
if len(N) == 1 or X[-2] == '0':
    print(-1)
    exit(0)
I = X.index(N[1])
X[I - 1], X[I] = X[I], X[I - 1]
print(*X[::-1], sep='')
0