結果
問題 | No.2132 1 or X Game |
ユーザー | phspls |
提出日時 | 2022-11-26 15:02:58 |
言語 | Rust (1.77.0 + proconio) |
結果 |
WA
|
実行時間 | - |
コード長 | 903 bytes |
コンパイル時間 | 22,713 ms |
コンパイル使用メモリ | 378,064 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-02 18:10:28 |
合計ジャッジ時間 | 19,548 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 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 | - |
ソースコード
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); } }