結果
問題 | No.420 mod2漸化式 |
ユーザー | MasuqaT |
提出日時 | 2019-05-05 18:47:33 |
言語 | Rust (1.77.0 + proconio) |
結果 |
MLE
|
実行時間 | - |
コード長 | 5,079 bytes |
コンパイル時間 | 20,804 ms |
コンパイル使用メモリ | 376,832 KB |
実行使用メモリ | 729,832 KB |
最終ジャッジ日時 | 2024-06-25 12:29:15 |
合計ジャッジ時間 | 23,320 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 42 ms
14,860 KB |
testcase_01 | MLE | - |
testcase_02 | -- | - |
testcase_03 | -- | - |
testcase_04 | -- | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
コンパイルメッセージ
warning: unused `Result` that must be used --> src/main.rs:170:9 | 170 | write!(writer, "0 0"); | ^^^^^^^^^^^^^^^^^^^^^ | = note: this `Result` may be an `Err` variant, which should be handled = note: `#[warn(unused_must_use)]` on by default = note: this warning originates in the macro `write` (in Nightly builds, run with -Z macro-backtrace for more info) warning: unused `Result` that must be used --> src/main.rs:194:5 | 194 | write!(writer, "{} {}", original_numbers.len(), original_numbers.iter().sum::<u64>()); | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ | = note: this `Result` may be an `Err` variant, which should be handled = note: this warning originates in the macro `write` (in Nightly builds, run with -Z macro-backtrace for more info)
ソースコード
use std::io; use std::io::{BufRead, Write}; macro_rules! input { (source = $s:expr, $($r:tt)*) => { let mut iter = $s.split_whitespace(); input_inner!{iter, $($r)*} }; (stdin = $s:expr, $($r:tt)*) => { let s = { let mut s = String::new(); $s.read_to_string(&mut s).unwrap(); s }; let mut iter = s.split_whitespace(); input_inner!{iter, $($r)*} }; } macro_rules! input_inner { ($iter:expr) => {}; ($iter:expr, ) => {}; ($iter:expr, $var:ident : $t:tt $($r:tt)*) => { let $var = read_value!($iter, $t); input_inner!{$iter $($r)*} }; } macro_rules! read_value { ($iter:expr, ( $($t:tt),* )) => { ( $(read_value!($iter, $t)),* ) }; ($iter:expr, [ $t:tt ; $len:expr ]) => { (0..$len).map(|_| read_value!($iter, $t)).collect::<Vec<_>>() }; ($iter:expr, chars) => { read_value!($iter, String).chars().collect::<Vec<char>>() }; ($iter:expr, usize1) => { read_value!($iter, usize) - 1 }; ($iter:expr, $t:ty) => { $iter.next().unwrap().parse::<$t>().expect("Parse error") }; } #[allow(unused_macros)] macro_rules! assert_judge { ($method:ident, $input:expr, $expected:expr) => { { let input = $input.as_bytes(); let mut output = Vec::new(); $method(&input[..], &mut output); let output = String::from_utf8(output).expect("Not UTF-8"); assert_eq!($expected, output); } }; } #[allow(unused_macros)] macro_rules! assert_judge_with_output { ($method:ident, $input:expr) => { { let input = $input.as_bytes(); let mut output = Vec::new(); $method(&input[..], &mut output); String::from_utf8(output).expect("Not UTF-8") } }; } #[allow(unused_macros)] macro_rules! assert_eq_with_error { ($left:expr, $right:expr, $precision:expr) => ({ match (&$left, &$right, &$precision) { (left_val, right_val, precision_val) => { if !(*left_val - *precision_val < *right_val && *right_val < *left_val + *precision_val) { // The reborrows below are intentional. Without them, the stack slot for the // borrow is initialized even before the values are compared, leading to a // noticeable slow down. panic!(r#"assertion failed: `(left == right) +- precision` left: `{:?}`, right: `{:?}`, precision: `{:?}`"#, &*left_val, &*right_val, &*precision_val) } } } }); } fn main() { let stdio = io::stdin(); let input = stdio.lock(); let output = io::stdout(); process(input, output); } // f(0) = 0 // f(1) = f(0) + 1 = 1 :> 1 // f(2) = f(1) + 0 = 1 :> 1 // f(3) = f(1) + 1 = 2 :> 1 + 1 // f(4) = f(2) + 0 = 1 :> 1 // f(5) = f(2) + 1 = 2 :> 1 + 1 // f(6) = f(3) + 0 = 2 :> 1 + 1 // f(7) = f(3) + 1 = 3 :> ? // f(8) = f(4) + 0 = 1 :> 1 // f(9) = f(4) + 1 = 2 :> 1 + 1 // f(10)= f(5) + 0 = 2 :> 1 + 1 // f(11)= f(5) + 1 = 3 :> ? // f(12)= f(6) + 0 = 2 // f(13)= f(6) + 1 = 3 // f(14)= f(7) + 0 = 3 // f(15)= f(7) + 1 = 4 // f(16)= f(8) + 0 = 1 // 0 <= n < 2^4 // f(n)==4 // 15: ((0 * 2 + 1 * 2 + 1) * 2 + 1) * 2 + 1 // f(n)==3 // 7: ((0 * 2 + 1 * 2 + 1) * 2 + 1) // 11: ((0 * 2 + 1 * 2 + 0) * 2 + 1) * 2 + 1 // 13: ((0 * 2 + 1 * 2 + 1) * 2 + 0) * 2 + 1 // 14: ((0 * 2 + 1 * 2 + 1) * 2 + 1) * 2 + 0 // f(n)==2 // 3: ((0 * 2 + 1 * 2 + 1) ) // 5: ((0 * 2 + 1 * 2 + 0) * 2 + 1) // 6: ((0 * 2 + 1 * 2 + 1) * 2 + 0) // 9: ((0 * 2 + 1 * 2 + 0) + 2 + 0) * 2 + 1 // 10: ((0 * 2 + 1 * 2 + 0) * 2 + 1) * 2 + 0 // 12: ((0 * 2 + 1 * 2 + 1) * 2 + 0) * 2 + 0 fn c(x: u64, max_bits: u8) -> Vec<(u64, u8)> { if x == 1 { return vec![(0, 0), (1, 1)]; } let v = c(x - 1, max_bits); return v.iter().flat_map(|v| if v.1 >= max_bits { vec![(v.0 << 1, v.1)] } else { vec![(v.0 << 1, v.1), ((v.0 << 1) | 1_u64, v.1 + 1)] } ).collect(); } fn process<R, W>(mut reader: R, mut writer: W) -> () where R: BufRead, W: Write { input! { stdin = reader, x: u64 } if x > 31 || x == 0 { write!(writer, "0 0"); return; } let x = x as u8; let mut original_numbers = Vec::new(); // 32/x && top-bit==1 for combi in c(31, x) { if combi.1 != x { continue; } // let code = (combi.0 << 1) + 1; let code = combi.0; // let mut v = 0; // // from bottom bit // for i in 0..32 { // let bottom_bit = (code >> i) & 1; // v += v * 2 + bottom_bit; // } original_numbers.push(code); } write!(writer, "{} {}", original_numbers.len(), original_numbers.iter().sum::<u64>()); } #[cfg(test)] mod tests { use super::*; #[test] fn sample1() { assert_judge!(process, "5", "169911 58851789346035"); } }