結果

問題 No.927 Second Permutation
ユーザー matriematrie
提出日時 2020-12-16 07:09:18
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 188 bytes
コンパイル時間 120 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 18,460 KB
最終ジャッジ日時 2024-09-20 04:28:58
合計ジャッジ時間 23,915 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
16,128 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 31 ms
10,624 KB
testcase_03 AC 31 ms
10,624 KB
testcase_04 AC 33 ms
10,752 KB
testcase_05 AC 28 ms
10,624 KB
testcase_06 AC 29 ms
10,624 KB
testcase_07 AC 28 ms
10,624 KB
testcase_08 AC 279 ms
13,472 KB
testcase_09 AC 30 ms
10,880 KB
testcase_10 AC 618 ms
15,088 KB
testcase_11 AC 1,628 ms
17,676 KB
testcase_12 AC 396 ms
13,976 KB
testcase_13 AC 44 ms
11,136 KB
testcase_14 AC 686 ms
14,992 KB
testcase_15 AC 370 ms
13,832 KB
testcase_16 AC 1,962 ms
18,460 KB
testcase_17 AC 1,879 ms
18,460 KB
testcase_18 AC 1,881 ms
18,332 KB
testcase_19 AC 1,918 ms
18,460 KB
testcase_20 AC 1,922 ms
18,328 KB
testcase_21 AC 1,928 ms
18,460 KB
testcase_22 AC 1,925 ms
18,332 KB
testcase_23 AC 1,886 ms
18,456 KB
testcase_24 TLE -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

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