結果
問題 | No.927 Second Permutation |
ユーザー | stng |
提出日時 | 2022-08-15 10:13:44 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 389 bytes |
コンパイル時間 | 300 ms |
コンパイル使用メモリ | 82,428 KB |
実行使用メモリ | 74,356 KB |
最終ジャッジ日時 | 2024-10-01 22:57:33 |
合計ジャッジ時間 | 3,012 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 37 ms
52,772 KB |
testcase_01 | AC | 37 ms
52,320 KB |
testcase_02 | AC | 38 ms
52,404 KB |
testcase_03 | AC | 38 ms
53,820 KB |
testcase_04 | AC | 38 ms
52,864 KB |
testcase_05 | AC | 37 ms
52,952 KB |
testcase_06 | AC | 38 ms
52,200 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 | 54 ms
70,756 KB |
testcase_25 | AC | 49 ms
66,724 KB |
testcase_26 | AC | 49 ms
64,576 KB |
testcase_27 | AC | 46 ms
62,900 KB |
testcase_28 | AC | 53 ms
70,092 KB |
testcase_29 | AC | 51 ms
67,364 KB |
ソースコード
x = input() li = [] for i in range(len(x)): li.append(x[i]) #print(li) li.sort(reverse=True) mx = ''.join(li) #print(li) li.sort() fv = li[0] for i in range(1,len(x)): if fv != li[i]: tmp = li[i] li[i] = fv li[0] = tmp break li = li[::-1] if li[0] == "0": print(-1) exit() ans = ''.join(li) if mx != ans: print(ans) else: print(-1)