結果

問題 No.927 Second Permutation
ユーザー V.llV.ll
提出日時 2020-01-04 19:36:38
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 200 bytes
コンパイル時間 103 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 12,288 KB
最終ジャッジ日時 2024-11-22 21:22:17
合計ジャッジ時間 2,650 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 AC 30 ms
10,752 KB
testcase_02 AC 32 ms
10,752 KB
testcase_03 AC 32 ms
10,624 KB
testcase_04 AC 32 ms
10,624 KB
testcase_05 AC 31 ms
10,752 KB
testcase_06 AC 32 ms
10,752 KB
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 RE -
testcase_22 RE -
testcase_23 RE -
testcase_24 AC 47 ms
11,904 KB
testcase_25 AC 42 ms
11,392 KB
testcase_26 AC 39 ms
11,264 KB
testcase_27 AC 37 ms
11,136 KB
testcase_28 AC 46 ms
11,520 KB
testcase_29 AC 43 ms
11,520 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

a=sorted(map(int,input()))
if a[-2]==0:print(-1)
elif a[0]==a[-1]:print(-1)
else:
 k=1
 while a[0]==a[k]:k+=1
 a[k]+=a[k-1];a[k-1]=a[k]-a[k-1];a[k]-=a[k-1];print(''.join(list(map(str,input()))[::-1]))
0