結果

問題 No.39 桁の数字を入れ替え
ユーザー nohakai3nohakai3
提出日時 2022-10-18 17:47:49
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 256 bytes
コンパイル時間 279 ms
コンパイル使用メモリ 87,052 KB
実行使用メモリ 71,640 KB
最終ジャッジ日時 2023-09-11 10:28:15
合計ジャッジ時間 2,774 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 71 ms
71,080 KB
testcase_01 WA -
testcase_02 AC 71 ms
71,084 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 71 ms
71,248 KB
testcase_09 AC 73 ms
71,236 KB
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 -
権限があれば一括ダウンロードができます

ソースコード

diff #

n=list(input())
ans=[]
for i in range(1,len(n)):
    if int(n[0])<int(n[i]):
        ans.append([i,int(n[i])])

ans.sort(key=lambda x:-x[1])
p=n.copy()
if len(ans)==0:
    n="".join(n)
    exit(print(n))
n[ans[0][0]],n[0]=p[0],str(ans[0][1])
n="".join(n)

0