結果

問題 No.2647 [Cherry 6th Tune A] Wind
ユーザー どららどらら
提出日時 2024-03-20 01:52:11
言語 Rust
(1.77.0 + proconio)
結果
AC  
実行時間 3 ms / 2,000 ms
コード長 535 bytes
コンパイル時間 12,444 ms
コンパイル使用メモリ 379,048 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-09-30 05:56:55
合計ジャッジ時間 13,302 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#![allow(non_snake_case)]
use proconio::input;

fn solve() {
    input! {
        D: i32,
        A: i64,
        X: [i64;D],
    }

    let mut ret = Vec::<i64>::new();
    for x in X {
        let a = x / A;
        let b = x % A;
        let val = a + (2 * b >= A) as i64;
        ret.push(val);
    }

    for i in 0..ret.len() {
        if i > 0 {
            print!(" ");
        }
        print!("{}", ret[i]);
    }
    println!();
}

fn main() {
    input! {
        T: i32,
    }

    for _ in 0..T {
        solve()
    }
}
0