結果
| 問題 |
No.39 桁の数字を入れ替え
|
| コンテスト | |
| ユーザー |
Maricom_tkg
|
| 提出日時 | 2018-11-19 15:51:37 |
| 言語 | Rust (1.83.0 + proconio) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 525 bytes |
| コンパイル時間 | 12,196 ms |
| コンパイル使用メモリ | 397,148 KB |
| 実行使用メモリ | 6,820 KB |
| 最終ジャッジ日時 | 2024-12-24 15:17:33 |
| 合計ジャッジ時間 | 13,239 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| other | AC * 17 WA * 2 |
ソースコード
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 max_idx != i {
n.swap(i, max_idx);
break;
}
}
println!("{}", n.concat());
}
Maricom_tkg