結果

問題 No.39 桁の数字を入れ替え
ユーザー Maricom_tkg
提出日時 2018-11-19 15:53:04
言語 Rust
(1.83.0 + proconio)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 532 bytes
コンパイル時間 12,428 ms
コンパイル使用メモリ 396,176 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-12-24 15:18:06
合計ジャッジ時間 13,743 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 19
権限があれば一括ダウンロードができます

ソースコード

diff #

fn main() {
    let mut buf = String::new();
    std::io::stdin().read_line(&mut buf).unwrap();
    
    let mut n: Vec<String> = buf.trim()
        .chars()
        .map(|n| n.to_string())
        .collect();
        
    for i in 0..n.len() {
        let mut max_idx = i;
        for j in i+1..n.len() {
            if n[max_idx] <= n[j] {
                max_idx = j;
            }
        }
        if n[max_idx] != n[i] {
            n.swap(i, max_idx);
            break;
        }
    }
    
    println!("{}", n.concat());
}
0