結果

問題 No.927 Second Permutation
ユーザー kbyskbys
提出日時 2020-03-29 01:23:18
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 548 ms / 2,000 ms
コード長 344 bytes
コンパイル時間 95 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 48,308 KB
最終ジャッジ日時 2024-06-10 17:59:23
合計ジャッジ時間 16,858 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 483 ms
43,572 KB
testcase_01 AC 479 ms
43,676 KB
testcase_02 AC 485 ms
43,552 KB
testcase_03 AC 477 ms
43,440 KB
testcase_04 AC 487 ms
43,828 KB
testcase_05 AC 481 ms
43,440 KB
testcase_06 AC 482 ms
43,548 KB
testcase_07 AC 485 ms
43,680 KB
testcase_08 AC 502 ms
43,564 KB
testcase_09 AC 490 ms
43,572 KB
testcase_10 AC 505 ms
43,828 KB
testcase_11 AC 536 ms
46,880 KB
testcase_12 AC 508 ms
43,692 KB
testcase_13 AC 474 ms
43,676 KB
testcase_14 AC 518 ms
44,332 KB
testcase_15 AC 499 ms
43,448 KB
testcase_16 AC 547 ms
47,656 KB
testcase_17 AC 541 ms
48,072 KB
testcase_18 AC 542 ms
47,776 KB
testcase_19 AC 546 ms
48,040 KB
testcase_20 AC 548 ms
47,780 KB
testcase_21 AC 539 ms
48,308 KB
testcase_22 AC 533 ms
48,056 KB
testcase_23 AC 537 ms
48,052 KB
testcase_24 AC 514 ms
43,824 KB
testcase_25 AC 502 ms
43,548 KB
testcase_26 AC 497 ms
43,440 KB
testcase_27 AC 494 ms
43,688 KB
testcase_28 AC 513 ms
43,828 KB
testcase_29 AC 506 ms
43,572 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np
X = list(map(int,input()))
X.sort(reverse=True)
npX = np.array(X)
mins = np.count_nonzero(npX==X[-1])
#print(npX)
#print(mins)
if X[0] == X[-1]:
    print(-1)
else:
    ans = X[:len(X)-(mins+1)]+[X[-1]]+[X[-(mins+1)]]+[X[-1]]*(mins-1)
    if ans[0] == 0:
        print(-1)
    else:
        print("".join(map(str,list(ans))))
0