結果

問題 No.927 Second Permutation
ユーザー matriematrie
提出日時 2020-12-16 07:18:57
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 93 ms / 2,000 ms
コード長 224 bytes
コンパイル時間 116 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 18,476 KB
最終ジャッジ日時 2024-09-20 04:29:04
合計ジャッジ時間 2,612 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,752 KB
testcase_01 AC 26 ms
10,752 KB
testcase_02 AC 27 ms
10,752 KB
testcase_03 AC 28 ms
10,624 KB
testcase_04 AC 28 ms
10,624 KB
testcase_05 AC 27 ms
10,624 KB
testcase_06 AC 27 ms
10,752 KB
testcase_07 AC 30 ms
10,752 KB
testcase_08 AC 48 ms
13,240 KB
testcase_09 AC 29 ms
10,880 KB
testcase_10 AC 59 ms
14,996 KB
testcase_11 AC 79 ms
17,688 KB
testcase_12 AC 55 ms
13,992 KB
testcase_13 AC 32 ms
11,264 KB
testcase_14 AC 60 ms
15,260 KB
testcase_15 AC 50 ms
13,800 KB
testcase_16 AC 84 ms
18,352 KB
testcase_17 AC 81 ms
18,460 KB
testcase_18 AC 83 ms
18,348 KB
testcase_19 AC 83 ms
18,476 KB
testcase_20 AC 81 ms
18,348 KB
testcase_21 AC 82 ms
18,468 KB
testcase_22 AC 83 ms
18,476 KB
testcase_23 AC 83 ms
18,352 KB
testcase_24 AC 49 ms
12,880 KB
testcase_25 AC 41 ms
12,144 KB
testcase_26 AC 38 ms
11,676 KB
testcase_27 AC 55 ms
13,692 KB
testcase_28 AC 93 ms
17,824 KB
testcase_29 AC 81 ms
16,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s=list(map(int,list(input())))
s=sorted(s)[::-1]
l=[x for x in s]
x=-1
if len(set(l))>1:
	for i in range(1,len(s)):
		if l[-i]<l[-i-1]:
			l[-i],l[-i-1]=l[-i-1],l[-i]
			x=''.join(map(str,l)); break
if l[0]==0: x=-1
print(x)
0