結果

問題 No.927 Second Permutation
ユーザー convexineqconvexineq
提出日時 2021-02-13 20:50:01
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 56 ms / 2,000 ms
コード長 310 bytes
コンパイル時間 300 ms
コンパイル使用メモリ 82,344 KB
実行使用メモリ 71,552 KB
最終ジャッジ日時 2024-07-21 00:40:12
合計ジャッジ時間 3,577 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,096 KB
testcase_01 AC 39 ms
51,584 KB
testcase_02 AC 42 ms
51,328 KB
testcase_03 AC 43 ms
51,328 KB
testcase_04 AC 43 ms
51,712 KB
testcase_05 AC 43 ms
52,224 KB
testcase_06 AC 39 ms
51,328 KB
testcase_07 AC 39 ms
51,456 KB
testcase_08 AC 47 ms
63,104 KB
testcase_09 AC 44 ms
59,136 KB
testcase_10 AC 52 ms
66,048 KB
testcase_11 AC 55 ms
69,888 KB
testcase_12 AC 51 ms
64,512 KB
testcase_13 AC 47 ms
59,520 KB
testcase_14 AC 50 ms
65,920 KB
testcase_15 AC 47 ms
64,000 KB
testcase_16 AC 52 ms
71,168 KB
testcase_17 AC 51 ms
71,168 KB
testcase_18 AC 52 ms
71,360 KB
testcase_19 AC 54 ms
71,040 KB
testcase_20 AC 56 ms
71,168 KB
testcase_21 AC 53 ms
71,424 KB
testcase_22 AC 53 ms
71,552 KB
testcase_23 AC 53 ms
71,296 KB
testcase_24 AC 49 ms
61,824 KB
testcase_25 AC 45 ms
60,416 KB
testcase_26 AC 44 ms
59,648 KB
testcase_27 AC 43 ms
59,904 KB
testcase_28 AC 44 ms
61,568 KB
testcase_29 AC 44 ms
60,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s = input()
a = [0]*10
for i in map(int,s):
    a[i] += 1
v = sum(a)
if v in a or a[0]==v-1:
    print(-1)
else:
    ans = []
    for i in range(10):
        ans += [i]*a[i]
    for i in range(10):
        if a[i]: break
    v = a[i]
    ans[v],ans[v-1] = ans[v-1],ans[v]
    print("".join(map(str,ans[::-1])))
0