結果

問題 No.927 Second Permutation
ユーザー tails1434tails1434
提出日時 2019-12-25 21:51:19
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 734 bytes
コンパイル時間 164 ms
コンパイル使用メモリ 82,072 KB
実行使用メモリ 77,652 KB
最終ジャッジ日時 2024-10-01 06:49:40
合計ジャッジ時間 2,728 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
54,592 KB
testcase_01 AC 39 ms
53,892 KB
testcase_02 AC 41 ms
53,552 KB
testcase_03 AC 40 ms
53,940 KB
testcase_04 AC 39 ms
54,500 KB
testcase_05 AC 40 ms
53,864 KB
testcase_06 AC 39 ms
54,000 KB
testcase_07 WA -
testcase_08 AC 49 ms
67,768 KB
testcase_09 AC 42 ms
59,948 KB
testcase_10 AC 53 ms
71,292 KB
testcase_11 AC 68 ms
77,492 KB
testcase_12 AC 54 ms
69,584 KB
testcase_13 AC 45 ms
61,336 KB
testcase_14 AC 55 ms
72,256 KB
testcase_15 AC 52 ms
68,964 KB
testcase_16 AC 68 ms
77,520 KB
testcase_17 AC 63 ms
77,272 KB
testcase_18 AC 66 ms
77,556 KB
testcase_19 AC 69 ms
77,576 KB
testcase_20 AC 71 ms
77,312 KB
testcase_21 AC 65 ms
77,652 KB
testcase_22 AC 69 ms
77,384 KB
testcase_23 AC 65 ms
77,360 KB
testcase_24 AC 45 ms
58,228 KB
testcase_25 AC 47 ms
56,628 KB
testcase_26 AC 45 ms
56,324 KB
testcase_27 AC 45 ms
59,648 KB
testcase_28 AC 51 ms
65,528 KB
testcase_29 AC 49 ms
62,368 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

def main():
    X = input()
    if len(set(X)) == 1:
        print(-1)
        exit()
    if ('0' in set(X)) and (len(set(X)) == 2):
        print(-1)
        exit()
    
    d = defaultdict(int)
    for x in X:
        d[x] += 1

    ans = ""
    cnt = 0
    second = -1
    length = len(d)
    for key in sorted(d.keys(), reverse=True):
        if cnt == length - 2:
            ans += key * (d[key] - 1)
            second = key
        elif cnt == length - 1:
            ans += key
            ans += second
            ans += key * (d[key] - 1)
        else:
            ans += key * d[key]
        cnt += 1
    
    print(ans)
        

    



    



if __name__ == "__main__":
    main()
0