結果

問題 No.927 Second Permutation
ユーザー s_shoheis_shohei
提出日時 2020-04-13 22:39:19
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 112 ms / 2,000 ms
コード長 347 bytes
コンパイル時間 263 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 89,088 KB
最終ジャッジ日時 2024-09-25 11:22:06
合計ジャッジ時間 3,604 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,224 KB
testcase_01 AC 40 ms
51,456 KB
testcase_02 AC 39 ms
52,068 KB
testcase_03 AC 39 ms
52,352 KB
testcase_04 AC 39 ms
51,968 KB
testcase_05 AC 39 ms
51,712 KB
testcase_06 AC 39 ms
51,328 KB
testcase_07 AC 40 ms
51,456 KB
testcase_08 AC 70 ms
71,680 KB
testcase_09 AC 51 ms
62,464 KB
testcase_10 AC 77 ms
77,440 KB
testcase_11 AC 107 ms
87,996 KB
testcase_12 AC 71 ms
74,224 KB
testcase_13 AC 54 ms
64,128 KB
testcase_14 AC 78 ms
78,208 KB
testcase_15 AC 69 ms
73,728 KB
testcase_16 AC 110 ms
88,704 KB
testcase_17 AC 112 ms
89,088 KB
testcase_18 AC 109 ms
88,832 KB
testcase_19 AC 109 ms
88,576 KB
testcase_20 AC 110 ms
88,832 KB
testcase_21 AC 111 ms
88,684 KB
testcase_22 AC 110 ms
88,832 KB
testcase_23 AC 109 ms
88,576 KB
testcase_24 AC 43 ms
56,832 KB
testcase_25 AC 43 ms
55,424 KB
testcase_26 AC 41 ms
54,400 KB
testcase_27 AC 44 ms
59,776 KB
testcase_28 AC 47 ms
61,824 KB
testcase_29 AC 46 ms
61,056 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

x=list(input())

if len(set(x))==1: # 999
    print(-1)
    exit()

flg=True
for i in range(1,len(x)):
    if x[i] != "0":
        flg=False
if flg:
    print(-1)
    exit()
x.sort()
now=0
for i in range(1,len(x)):
    if x[now] != x[i]:
        x[now],x[i] = x[i],x[now]
        break
    else:
        now=i

x=list(reversed(x))
print(*x,sep="")
0