結果
| 問題 |
No.927 Second Permutation
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2020-12-16 07:18:57 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
AC
|
| 実行時間 | 93 ms / 2,000 ms |
| コード長 | 224 bytes |
| コンパイル時間 | 116 ms |
| コンパイル使用メモリ | 12,416 KB |
| 実行使用メモリ | 18,476 KB |
| 最終ジャッジ日時 | 2024-09-20 04:29:04 |
| 合計ジャッジ時間 | 2,612 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 27 |
ソースコード
s=list(map(int,list(input()))) s=sorted(s)[::-1] l=[x for x in s] x=-1 if len(set(l))>1: for i in range(1,len(s)): if l[-i]<l[-i-1]: l[-i],l[-i-1]=l[-i-1],l[-i] x=''.join(map(str,l)); break if l[0]==0: x=-1 print(x)