結果

問題 No.927 Second Permutation
ユーザー na-shna-sh
提出日時 2020-01-06 15:36:34
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 829 ms / 2,000 ms
コード長 301 bytes
コンパイル時間 130 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 18,076 KB
最終ジャッジ日時 2024-05-02 10:51:54
合計ジャッジ時間 6,482 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,752 KB
testcase_01 AC 28 ms
10,624 KB
testcase_02 AC 27 ms
10,752 KB
testcase_03 AC 25 ms
10,752 KB
testcase_04 AC 25 ms
10,752 KB
testcase_05 AC 26 ms
10,624 KB
testcase_06 AC 26 ms
10,624 KB
testcase_07 AC 25 ms
10,752 KB
testcase_08 AC 61 ms
13,184 KB
testcase_09 AC 28 ms
10,752 KB
testcase_10 AC 101 ms
14,720 KB
testcase_11 AC 199 ms
17,492 KB
testcase_12 AC 74 ms
13,696 KB
testcase_13 AC 32 ms
11,136 KB
testcase_14 AC 107 ms
15,184 KB
testcase_15 AC 70 ms
13,568 KB
testcase_16 AC 245 ms
17,612 KB
testcase_17 AC 243 ms
18,072 KB
testcase_18 AC 226 ms
18,076 KB
testcase_19 AC 222 ms
17,944 KB
testcase_20 AC 221 ms
17,948 KB
testcase_21 AC 234 ms
17,820 KB
testcase_22 AC 230 ms
17,952 KB
testcase_23 AC 218 ms
17,816 KB
testcase_24 AC 829 ms
11,904 KB
testcase_25 AC 386 ms
11,520 KB
testcase_26 AC 238 ms
11,264 KB
testcase_27 AC 152 ms
11,264 KB
testcase_28 AC 714 ms
12,032 KB
testcase_29 AC 478 ms
11,648 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

X = list(map(int, input()))
X.sort()
ans = [X.pop(0)]
while len(X):
    x = X.pop(0)
    if ans[-1] != x:
        ans += [x, ans.pop(0)]
        ans += X
        if ans[-1] != 0:
            print(''.join(map(str, reversed(ans))))
            break
    else:
        ans.append(x)
else:
    print(-1)
0