結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 RE -
testcase_01 AC 26 ms
10,752 KB
testcase_02 RE -
testcase_03 AC 24 ms
10,624 KB
testcase_04 AC 24 ms
10,752 KB
testcase_05 AC 24 ms
10,624 KB
testcase_06 AC 24 ms
10,752 KB
testcase_07 AC 23 ms
10,752 KB
testcase_08 WA -
testcase_09 RE -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 24 ms
10,752 KB
testcase_15 AC 23 ms
10,624 KB
testcase_16 AC 24 ms
10,752 KB
testcase_17 AC 24 ms
10,752 KB
testcase_18 AC 26 ms
10,624 KB
権限があれば一括ダウンロードができます

ソースコード

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
for i in range(len(n)-2,-1,-1):
    if n[now_max_i] < n[i]:
        now_max_i = i
n[now_max_i],n[swap_index] = n[swap_index], n[now_max_i]

print("".join(map(str, n)))

0