結果
問題 | No.2647 [Cherry 6th Tune A] Wind |
ユーザー | phspls |
提出日時 | 2024-02-23 21:36:31 |
言語 | Rust (1.83.0 + proconio) |
結果 |
AC
|
実行時間 | 3 ms / 2,000 ms |
コード長 | 749 bytes |
コンパイル時間 | 11,222 ms |
コンパイル使用メモリ | 387,204 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-09-29 05:48:40 |
合計ジャッジ時間 | 12,220 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 14 |
コンパイルメッセージ
warning: unused variable: `d` --> src/main.rs:10:13 | 10 | let d = temp[0]; | ^ help: if this is intentional, prefix it with an underscore: `_d` | = note: `#[warn(unused_variables)]` on by default
ソースコード
fn main() { let mut t = String::new(); std::io::stdin().read_line(&mut t).ok(); let t: usize = t.trim().parse().unwrap(); for _ in 0..t { let mut temp = String::new(); std::io::stdin().read_line(&mut temp).ok(); let temp: Vec<usize> = temp.trim().split_whitespace().map(|s| s.parse().unwrap()).collect(); let d = temp[0]; let a = temp[1]; let mut x = String::new(); std::io::stdin().read_line(&mut x).ok(); let x: Vec<usize> = x.trim().split_whitespace().map(|s| s.parse().unwrap()).collect(); let ret = x.into_iter().map(|v| v / a + if v % a * 2 >= a { 1 } else { 0 }).map(|v| v.to_string()).collect::<Vec<_>>(); println!("{}", ret.join(" ")); } }