結果

問題 No.927 Second Permutation
ユーザー nishiwakkinishiwakki
提出日時 2020-03-09 21:33:34
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 353 bytes
コンパイル時間 155 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 11,904 KB
最終ジャッジ日時 2024-04-26 18:06:30
合計ジャッジ時間 4,498 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,624 KB
testcase_01 AC 27 ms
10,496 KB
testcase_02 AC 27 ms
10,496 KB
testcase_03 AC 29 ms
10,624 KB
testcase_04 AC 30 ms
10,496 KB
testcase_05 AC 27 ms
10,496 KB
testcase_06 AC 28 ms
10,624 KB
testcase_07 AC 29 ms
10,496 KB
testcase_08 AC 56 ms
10,752 KB
testcase_09 AC 28 ms
10,496 KB
testcase_10 AC 93 ms
11,264 KB
testcase_11 AC 188 ms
11,744 KB
testcase_12 AC 70 ms
11,008 KB
testcase_13 AC 29 ms
10,624 KB
testcase_14 AC 96 ms
11,136 KB
testcase_15 AC 68 ms
11,136 KB
testcase_16 AC 215 ms
11,776 KB
testcase_17 AC 214 ms
11,904 KB
testcase_18 AC 203 ms
11,904 KB
testcase_19 AC 205 ms
11,904 KB
testcase_20 AC 205 ms
11,776 KB
testcase_21 AC 208 ms
11,776 KB
testcase_22 AC 210 ms
11,776 KB
testcase_23 AC 207 ms
11,776 KB
testcase_24 AC 42 ms
11,520 KB
testcase_25 AC 37 ms
11,008 KB
testcase_26 AC 34 ms
11,136 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

x = list(input())
l = len(x)
x.sort()
num = x[0]
idx = -1
for i in range(1, l):
    if num == x[i]:
        pass
    else:
        idx = i
        break

if idx == -1:
    print(-1)
    exit()
if l == 2 and x[0] == '0':
    print(-1)
    exit()
#print(x)
x[idx-1], x[idx] = x[idx], x[idx-1]
ans = ''
while l > 0:
    ans += x.pop()
    l -= 1
print(ans)
0