結果

問題 No.39 桁の数字を入れ替え
ユーザー Yuta123456Yuta123456
提出日時 2020-05-21 17:29:20
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
RE  
実行時間 -
コード長 444 bytes
コンパイル時間 138 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 10,880 KB
最終ジャッジ日時 2024-04-09 23:26:04
合計ジャッジ時間 1,524 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 WA -
testcase_02 RE -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 30 ms
10,752 KB
testcase_09 RE -
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(map(int, input()))
now_max_i = len(n) - 1
max_num = max(n, key=lambda x: int(x))
flag = False
i = 0
while n[i] == max_num:
    i += 1
if i == len(n):
    print("".join(map(str, n)))
    exit()
swap_index = i
now_max_i = len(n)-1
for i in range(len(n)-1,-1,-1):
    if n[now_max_i] < n[i]:
        now_max_i = i
if n[now_max_i] < n[swap_index]:
    n[now_max_i], n[swap_index] = n[swap_index], n[now_max_i]
print("".join(map(str, n)))

0