結果

問題 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  
実行時間 890 ms / 2,000 ms
コード長 301 bytes
コンパイル時間 235 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 18,072 KB
最終ジャッジ日時 2024-11-23 00:02:32
合計ジャッジ時間 7,297 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,624 KB
testcase_01 AC 30 ms
10,624 KB
testcase_02 AC 30 ms
10,624 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 29 ms
10,624 KB
testcase_05 AC 29 ms
10,624 KB
testcase_06 AC 29 ms
10,624 KB
testcase_07 AC 30 ms
10,624 KB
testcase_08 AC 69 ms
13,184 KB
testcase_09 AC 31 ms
10,752 KB
testcase_10 AC 115 ms
14,848 KB
testcase_11 AC 221 ms
17,488 KB
testcase_12 AC 84 ms
13,696 KB
testcase_13 AC 36 ms
11,264 KB
testcase_14 AC 116 ms
14,928 KB
testcase_15 AC 81 ms
13,568 KB
testcase_16 AC 251 ms
17,864 KB
testcase_17 AC 251 ms
17,948 KB
testcase_18 AC 250 ms
18,072 KB
testcase_19 AC 246 ms
17,948 KB
testcase_20 AC 254 ms
18,072 KB
testcase_21 AC 255 ms
17,948 KB
testcase_22 AC 253 ms
17,948 KB
testcase_23 AC 250 ms
17,944 KB
testcase_24 AC 890 ms
11,648 KB
testcase_25 AC 422 ms
11,392 KB
testcase_26 AC 257 ms
11,264 KB
testcase_27 AC 178 ms
11,008 KB
testcase_28 AC 797 ms
12,032 KB
testcase_29 AC 531 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