結果

問題 No.39 桁の数字を入れ替え
ユーザー surprise_tanaka
提出日時 2018-12-05 01:39:46
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
WA  
実行時間 -
コード長 165 bytes
コンパイル時間 75 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-07-16 01:17:59
合計ジャッジ時間 1,326 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 11 WA * 8
権限があれば一括ダウンロードができます

ソースコード

diff #

N = list(input())
max = 0
k = 0
for i in range(len(N)-1,-1,-1):
    if max < int(N[i]):
        max = int(N[i])
        k = i
N[0],N[k] = N[k],N[0]
print("".join(N))
0