結果

問題 No.927 Second Permutation
ユーザー chanpukuchanpuku
提出日時 2019-11-22 23:12:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 72 ms / 2,000 ms
コード長 694 bytes
コンパイル時間 272 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 78,592 KB
最終ジャッジ日時 2024-10-11 04:47:52
合計ジャッジ時間 2,968 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
51,968 KB
testcase_01 AC 42 ms
51,840 KB
testcase_02 AC 41 ms
51,840 KB
testcase_03 AC 42 ms
51,584 KB
testcase_04 AC 42 ms
51,584 KB
testcase_05 AC 41 ms
51,712 KB
testcase_06 AC 41 ms
51,584 KB
testcase_07 AC 42 ms
51,584 KB
testcase_08 AC 59 ms
67,072 KB
testcase_09 AC 52 ms
60,288 KB
testcase_10 AC 63 ms
70,528 KB
testcase_11 AC 70 ms
76,416 KB
testcase_12 AC 61 ms
68,224 KB
testcase_13 AC 53 ms
61,056 KB
testcase_14 AC 65 ms
70,784 KB
testcase_15 AC 62 ms
68,224 KB
testcase_16 AC 72 ms
78,592 KB
testcase_17 AC 72 ms
78,080 KB
testcase_18 AC 71 ms
78,208 KB
testcase_19 AC 71 ms
78,208 KB
testcase_20 AC 71 ms
78,080 KB
testcase_21 AC 72 ms
78,080 KB
testcase_22 AC 72 ms
78,592 KB
testcase_23 AC 71 ms
77,952 KB
testcase_24 AC 54 ms
65,152 KB
testcase_25 AC 52 ms
62,976 KB
testcase_26 AC 51 ms
61,440 KB
testcase_27 AC 52 ms
61,056 KB
testcase_28 AC 54 ms
64,768 KB
testcase_29 AC 53 ms
63,360 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# coding: utf-8
# Your code here!

X=input()
num=[0]*10
for i in range(len(X)):
    num[9-int(X[i])]=num[9-int(X[i])]+1

mi=-1
mi2=-1
for i in range(10):
    if not num[9-i]==0:
        if mi==-1:
            mi=9-i
        else:
            mi2=9-i
            break
if mi2==-1 or sum(num)<num[9]+2:
    print(-1)
else:
    l=[]
    for i in range(10):
        if i==mi2:
            for j in range(num[i]-1):
                l.append(9-i)
            l.append(9-mi)
        elif i==mi:
            l.append(9-mi2)
            for j in range(num[i]-1):
                l.append(9-i)
        else:
            for j in range(num[i]):
                l.append(9-i)
    print(''.join(map(str,l)))
0