結果

問題 No.2132 1 or X Game
ユーザー phsplsphspls
提出日時 2022-11-26 15:02:58
言語 Rust
(1.77.0)
結果
WA  
実行時間 -
コード長 903 bytes
コンパイル時間 461 ms
コンパイル使用メモリ 162,556 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-04-10 15:55:54
合計ジャッジ時間 6,442 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

const MOD: usize = 998244353;

fn solve() -> usize {
    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 n = temp[0];
    let x = temp[1];
    let cnt = n / x;
    let mut ret = if x % 2 == 0 { cnt * x / 2 } else if cnt % 2 == 0 { cnt * x / 2 } else { cnt * x / 2 + 1 };
    if n - cnt * x > 0 {
        ret += (n - cnt * x) / 2;
        if (n - cnt * x) % 2 == 1 {
            if cnt % 2 == 0 {
                ret += 1;
            }
        }
    }
    ret
}

fn main() {
    let mut t = String::new();
    std::io::stdin().read_line(&mut t).ok();
    let t: usize = t.trim().parse().unwrap();
    let mut result = Vec::with_capacity(t);
    for _ in 0..t {
        result.push(solve());
    }
    for &v in result.iter() {
        println!("{}", v % MOD);
    }
}
0