結果

問題 No.2647 [Cherry 6th Tune A] Wind
ユーザー kekenxkekenx
提出日時 2024-08-21 21:16:26
言語 Rust
(1.77.0 + proconio)
結果
WA  
実行時間 -
コード長 415 bytes
コンパイル時間 12,682 ms
コンパイル使用メモリ 402,120 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-08-21 21:16:41
合計ジャッジ時間 14,523 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
6,812 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 3 ms
6,944 KB
testcase_04 AC 1 ms
6,940 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 3 ms
6,944 KB
testcase_08 AC 3 ms
6,940 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 1 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

use proconio::input;

fn main() {
    input! {
    t: usize,
    }
    for _ in 0..t {
        input! {
            d: usize,
            a: f64,
            x: [f64; d],
        };

        for (i, &v) in x.iter().enumerate() {
            print!("{}", (v / a).round());
            if i + 1 == x.len() {
                println!();
            } else {
                print!(" ");
            }
        }
    }
}
0