結果

問題 No.927 Second Permutation
ユーザー H20H20
提出日時 2021-11-03 01:57:15
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 497 bytes
コンパイル時間 352 ms
コンパイル使用メモリ 82,264 KB
実行使用メモリ 71,740 KB
最終ジャッジ日時 2024-10-12 09:57:53
合計ジャッジ時間 3,048 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
54,008 KB
testcase_01 AC 41 ms
54,416 KB
testcase_02 AC 41 ms
53,492 KB
testcase_03 AC 43 ms
54,032 KB
testcase_04 AC 42 ms
53,620 KB
testcase_05 AC 44 ms
54,376 KB
testcase_06 AC 42 ms
53,936 KB
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 AC 53 ms
69,944 KB
testcase_25 AC 50 ms
65,680 KB
testcase_26 AC 48 ms
64,236 KB
testcase_27 AC 48 ms
63,760 KB
testcase_28 AC 52 ms
68,612 KB
testcase_29 AC 52 ms
67,436 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections
X = list(input())
C = collections.Counter(X)
if len(C)==1:
    print(-1)
    exit()
cnt = 0
for k,v in C.items():
    if k!='0':
        cnt+=v
if cnt==1:
    print(-1)
    exit()
for i in range(0,10):
    for j in range(i+1,10):
        if C[str(i)] and C[str(j)]:
            ans = ''
            for k in reversed(range(10)):
                ans+=str(k)*(C[str(k)]-int(k==j))
                if k==i:
                    ans+=str(j)
            print(ans)
            exit()
0