結果

問題 No.927 Second Permutation
ユーザー zyxwzyxw
提出日時 2021-02-06 10:45:16
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 280 ms / 2,000 ms
コード長 440 bytes
コンパイル時間 87 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 12,608 KB
最終ジャッジ日時 2024-07-02 17:46:59
合計ジャッジ時間 5,179 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 29 ms
10,752 KB
testcase_01 AC 30 ms
10,496 KB
testcase_02 AC 33 ms
10,624 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 31 ms
10,752 KB
testcase_05 AC 30 ms
10,752 KB
testcase_06 AC 30 ms
10,496 KB
testcase_07 AC 29 ms
10,496 KB
testcase_08 AC 81 ms
11,196 KB
testcase_09 AC 32 ms
10,624 KB
testcase_10 AC 130 ms
11,648 KB
testcase_11 AC 240 ms
12,404 KB
testcase_12 AC 98 ms
11,392 KB
testcase_13 AC 37 ms
10,752 KB
testcase_14 AC 136 ms
11,764 KB
testcase_15 AC 95 ms
11,264 KB
testcase_16 AC 277 ms
12,476 KB
testcase_17 AC 280 ms
12,476 KB
testcase_18 AC 280 ms
12,608 KB
testcase_19 AC 277 ms
12,608 KB
testcase_20 AC 278 ms
12,476 KB
testcase_21 AC 279 ms
12,476 KB
testcase_22 AC 275 ms
12,220 KB
testcase_23 AC 277 ms
12,348 KB
testcase_24 AC 56 ms
12,032 KB
testcase_25 AC 47 ms
11,776 KB
testcase_26 AC 43 ms
11,392 KB
testcase_27 AC 40 ms
11,136 KB
testcase_28 AC 57 ms
12,028 KB
testcase_29 AC 51 ms
11,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

X=sorted([int(s) for s in list(input())])
X_set=sorted(list(set(X)))
if len(X_set)==1 or (len(X_set)==2 and X_set[0]==0 and  X.count(X_set[1])==1):
    print(-1)
else:
    for i in range(1,len(X)):
        if X[i]!=X[i-1]:
            a=0
            a+=X[i]
            b=0
            b+=X[i-1]
            X[i]=b
            X[i-1]=a
            break
    ans=""
    for i in range(len(X)):
        ans+=str(X[len(X)-i-1])
    print(ans)
0