結果
問題 | No.1281 Cigarette Distribution |
ユーザー | Strorkis |
提出日時 | 2020-11-06 23:18:36 |
言語 | Rust (1.77.0 + proconio) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,646 bytes |
コンパイル時間 | 13,391 ms |
コンパイル使用メモリ | 377,844 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-22 13:40:26 |
合計ジャッジ時間 | 13,865 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
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 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | AC | 1 ms
5,376 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
ソースコード
pub mod procon_input { use std::{str::FromStr, iter::FromIterator}; pub fn read_line() -> String { let mut input = String::new(); std::io::stdin().read_line(&mut input).ok(); input } pub fn parse<T: FromStr>(s: &str) -> T { s.parse().ok().unwrap() } pub fn read<T: FromStr>() -> T { parse(read_line().trim_end()) } pub fn read_collection<T: FromStr, C: FromIterator<T>>() -> C { read_line().split_whitespace().map(parse).collect() } #[macro_export] macro_rules! read_tuple { ( $( $t:ty ),* ) => {{ let input = read_line(); let mut iter = input.split_whitespace(); ( $( parse::<$t>(iter.next().unwrap()) ),* ) }}; } } use procon_input::*; const MOD: i64 = 1_000_000_007; fn solve(writer: &mut std::io::BufWriter<std::io::StdoutLock>) { use std::io::Write; let (n, m) = read_tuple!(usize, usize); let pow = |mut a: i64, mut n: usize| -> i64 { let mut res = 1; while n > 0 { if n & 1 > 0 { res = res * a % MOD; } a = a * a % MOD; n >>= 1; } res }; for x in 1..=m { if n < x * 2 - 1 { writeln!(writer, "0").ok(); continue; } let q = n / x; let r = n % x; let ans = pow((q + 1) as i64, r) * pow(q as i64, x - r); writeln!(writer, "{}", ans).ok(); } } fn main() { let stdout = std::io::stdout(); let mut writer = std::io::BufWriter::new(stdout.lock()); solve(&mut writer); }