結果
問題 | No.1532 Different Products |
ユーザー | ngtkana |
提出日時 | 2021-06-05 17:41:55 |
言語 | Rust (1.77.0 + proconio) |
結果 |
AC
|
実行時間 | 518 ms / 4,000 ms |
コード長 | 10,005 bytes |
コンパイル時間 | 13,215 ms |
コンパイル使用メモリ | 386,748 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-05-01 11:44:06 |
合計ジャッジ時間 | 31,245 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,816 KB |
testcase_01 | AC | 56 ms
6,816 KB |
testcase_02 | AC | 1 ms
6,940 KB |
testcase_03 | AC | 1 ms
6,944 KB |
testcase_04 | AC | 1 ms
6,940 KB |
testcase_05 | AC | 1 ms
6,940 KB |
testcase_06 | AC | 1 ms
6,944 KB |
testcase_07 | AC | 1 ms
6,940 KB |
testcase_08 | AC | 1 ms
6,940 KB |
testcase_09 | AC | 12 ms
6,940 KB |
testcase_10 | AC | 59 ms
6,944 KB |
testcase_11 | AC | 41 ms
6,940 KB |
testcase_12 | AC | 196 ms
6,940 KB |
testcase_13 | AC | 80 ms
6,944 KB |
testcase_14 | AC | 441 ms
6,944 KB |
testcase_15 | AC | 2 ms
6,940 KB |
testcase_16 | AC | 88 ms
6,944 KB |
testcase_17 | AC | 46 ms
6,940 KB |
testcase_18 | AC | 29 ms
6,940 KB |
testcase_19 | AC | 177 ms
6,940 KB |
testcase_20 | AC | 421 ms
6,940 KB |
testcase_21 | AC | 127 ms
6,944 KB |
testcase_22 | AC | 100 ms
6,940 KB |
testcase_23 | AC | 42 ms
6,944 KB |
testcase_24 | AC | 381 ms
6,944 KB |
testcase_25 | AC | 158 ms
6,944 KB |
testcase_26 | AC | 14 ms
6,940 KB |
testcase_27 | AC | 176 ms
6,944 KB |
testcase_28 | AC | 118 ms
6,940 KB |
testcase_29 | AC | 124 ms
6,944 KB |
testcase_30 | AC | 244 ms
6,944 KB |
testcase_31 | AC | 236 ms
6,940 KB |
testcase_32 | AC | 265 ms
6,944 KB |
testcase_33 | AC | 214 ms
6,940 KB |
testcase_34 | AC | 383 ms
6,944 KB |
testcase_35 | AC | 264 ms
6,944 KB |
testcase_36 | AC | 388 ms
6,940 KB |
testcase_37 | AC | 73 ms
6,944 KB |
testcase_38 | AC | 394 ms
6,940 KB |
testcase_39 | AC | 351 ms
6,940 KB |
testcase_40 | AC | 367 ms
6,940 KB |
testcase_41 | AC | 481 ms
6,940 KB |
testcase_42 | AC | 452 ms
6,940 KB |
testcase_43 | AC | 458 ms
6,944 KB |
testcase_44 | AC | 498 ms
6,940 KB |
testcase_45 | AC | 498 ms
6,944 KB |
testcase_46 | AC | 496 ms
6,940 KB |
testcase_47 | AC | 501 ms
6,944 KB |
testcase_48 | AC | 510 ms
6,944 KB |
testcase_49 | AC | 510 ms
6,944 KB |
testcase_50 | AC | 501 ms
6,940 KB |
testcase_51 | AC | 503 ms
6,944 KB |
testcase_52 | AC | 499 ms
6,940 KB |
testcase_53 | AC | 509 ms
6,940 KB |
testcase_54 | AC | 501 ms
6,940 KB |
testcase_55 | AC | 518 ms
6,940 KB |
testcase_56 | AC | 487 ms
6,944 KB |
testcase_57 | AC | 498 ms
6,940 KB |
testcase_58 | AC | 499 ms
6,940 KB |
testcase_59 | AC | 474 ms
6,944 KB |
testcase_60 | AC | 511 ms
6,944 KB |
testcase_61 | AC | 1 ms
6,940 KB |
testcase_62 | AC | 1 ms
6,940 KB |
testcase_63 | AC | 507 ms
6,944 KB |
コンパイルメッセージ
warning: unused imports: `Leaf`, `Tuple`, `VecLen` --> src/main.rs:43:27 | 43 | multi_token::{Leaf, Parser, ParserTuple, RawTuple, Tuple, VecLen}, | ^^^^ ^^^^^ ^^^^^^ | = note: `#[warn(unused_imports)]` on by default warning: unused import: `with_str` --> src/main.rs:299:35 | 299 | pub use self::i::{with_stdin, with_str}; | ^^^^^^^^ warning: unused imports: `ParserTuple`, `Parser`, `RawTuple`, `Token`, `Usize1` --> src/main.rs:302:28 | 302 | pub use super::i::{Parser, ParserTuple, RawTuple, Token, Usize1}; | ^^^^^^ ^^^^^^^^^^^ ^^^^^^^^ ^^^^^ ^^^^^^
ソースコード
use std::{collections::HashMap, iter::once}; #[allow(unused_imports)] #[cfg(feature = "dbg")] use dbg::lg; fn main() { let mut buf = ngtio::with_stdin(); let mut dp = once((1u64, 1u64)).collect::<HashMap<_, _>>(); let n = buf.u64(); let k = buf.u64(); for x in 1..=n { let mut swp = dp.clone(); for (y, value) in dp { if x * y <= k { *swp.entry(k / (k / (x * y))).or_insert(0) += value; } } dp = swp; } let ans = dp.values().sum::<u64>() - 1; println!("{}", ans); } // template {{{ #[cfg(not(feature = "dbg"))] #[allow(unused_macros)] #[macro_export] macro_rules! lg { ($($expr:expr),*) => {}; } #[allow(dead_code)] mod ngtio { mod i { use std::{ io::{self, BufRead}, iter, }; pub use self::{ multi_token::{Leaf, Parser, ParserTuple, RawTuple, Tuple, VecLen}, token::{Token, Usize1}, }; pub fn with_stdin() -> Tokenizer<io::BufReader<io::Stdin>> { io::BufReader::new(io::stdin()).tokenizer() } pub fn with_str(src: &str) -> Tokenizer<&[u8]> { src.as_bytes().tokenizer() } pub struct Tokenizer<S: BufRead> { queue: Vec<String>, // FIXME: String のみにすると速そうです。 scanner: S, } macro_rules! prim_method { ($name:ident: $T:ty) => { pub fn $name(&mut self) -> $T { <$T>::leaf().parse(self) } }; ($name:ident) => { prim_method!($name: $name); }; } macro_rules! prim_methods { ($name:ident: $T:ty; $($rest:tt)*) => { prim_method!($name:$T); prim_methods!($($rest)*); }; ($name:ident; $($rest:tt)*) => { prim_method!($name); prim_methods!($($rest)*); }; () => () } impl<S: BufRead> Tokenizer<S> { pub fn token(&mut self) -> String { self.load(); self.queue.pop().expect("入力が終了したのですが。") } pub fn new(scanner: S) -> Self { Self { queue: Vec::new(), scanner, } } fn load(&mut self) { while self.queue.is_empty() { let mut s = String::new(); let length = self.scanner.read_line(&mut s).unwrap(); // 入力が UTF-8 でないときにエラーだそうです。 if length == 0 { break; } self.queue = s.split_whitespace().rev().map(str::to_owned).collect(); } } pub fn skip_line(&mut self) { assert!( self.queue.is_empty(), "行の途中で呼ばないでいただきたいです。現在のトークンキュー: {:?}", &self.queue ); self.load(); } pub fn end(&mut self) { self.load(); assert!(self.queue.is_empty(), "入力はまだあります!"); } pub fn parse<T: Token>(&mut self) -> T::Output { T::parse(&self.token()) } pub fn parse_collect<T: Token, B>(&mut self, n: usize) -> B where B: iter::FromIterator<T::Output>, { iter::repeat_with(|| self.parse::<T>()).take(n).collect() } pub fn tuple<T: RawTuple>(&mut self) -> <T::LeafTuple as Parser>::Output { T::leaf_tuple().parse(self) } pub fn vec<T: Token>(&mut self, len: usize) -> Vec<T::Output> { T::leaf().vec(len).parse(self) } pub fn vec_tuple<T: RawTuple>( &mut self, len: usize, ) -> Vec<<T::LeafTuple as Parser>::Output> { T::leaf_tuple().vec(len).parse(self) } pub fn vec2<T: Token>(&mut self, height: usize, width: usize) -> Vec<Vec<T::Output>> { T::leaf().vec(width).vec(height).parse(self) } pub fn vec2_tuple<T>( &mut self, height: usize, width: usize, ) -> Vec<Vec<<T::LeafTuple as Parser>::Output>> where T: RawTuple, { T::leaf_tuple().vec(width).vec(height).parse(self) } prim_methods! { u8; u16; u32; u64; u128; usize; i8; i16; i32; i64; i128; isize; f32; f64; char; string: String; } } mod token { use super::multi_token::Leaf; use std::{any, fmt, marker, str}; pub trait Token: Sized { type Output; fn parse(s: &str) -> Self::Output; fn leaf() -> Leaf<Self> { Leaf(marker::PhantomData) } } impl<T> Token for T where T: str::FromStr, <T as str::FromStr>::Err: fmt::Debug, { type Output = T; fn parse(s: &str) -> Self::Output { s.parse().unwrap_or_else(|_| { panic!("Parse error!: ({}: {})", s, any::type_name::<T>(),) }) } } pub struct Usize1 {} impl Token for Usize1 { type Output = usize; fn parse(s: &str) -> Self::Output { usize::parse(s) .checked_sub(1) .expect("Parse error! (Zero substruction error of Usize1)") } } } mod multi_token { use super::{Token, Tokenizer}; use std::{io::BufRead, iter, marker}; pub trait Parser: Sized { type Output; fn parse<S: BufRead>(&self, server: &mut Tokenizer<S>) -> Self::Output; fn vec(self, len: usize) -> VecLen<Self> { VecLen { len, elem: self } } } pub struct Leaf<T>(pub(super) marker::PhantomData<T>); impl<T: Token> Parser for Leaf<T> { type Output = T::Output; fn parse<S: BufRead>(&self, server: &mut Tokenizer<S>) -> T::Output { server.parse::<T>() } } pub struct VecLen<T> { pub len: usize, pub elem: T, } impl<T: Parser> Parser for VecLen<T> { type Output = Vec<T::Output>; fn parse<S: BufRead>(&self, server: &mut Tokenizer<S>) -> Self::Output { iter::repeat_with(|| self.elem.parse(server)) .take(self.len) .collect() } } pub trait RawTuple { type LeafTuple: Parser; fn leaf_tuple() -> Self::LeafTuple; } pub trait ParserTuple { type Tuple: Parser; fn tuple(self) -> Self::Tuple; } pub struct Tuple<T>(pub T); macro_rules! impl_tuple { ($($t:ident: $T:ident),*) => { impl<$($T),*> Parser for Tuple<($($T,)*)> where $($T: Parser,)* { type Output = ($($T::Output,)*); #[allow(unused_variables)] fn parse<S: BufRead >(&self, server: &mut Tokenizer<S>) -> Self::Output { match self { Tuple(($($t,)*)) => { ($($t.parse(server),)*) } } } } impl<$($T: Token),*> RawTuple for ($($T,)*) { type LeafTuple = Tuple<($(Leaf<$T>,)*)>; fn leaf_tuple() -> Self::LeafTuple { Tuple(($($T::leaf(),)*)) } } impl<$($T: Parser),*> ParserTuple for ($($T,)*) { type Tuple = Tuple<($($T,)*)>; fn tuple(self) -> Self::Tuple { Tuple(self) } } }; } impl_tuple!(); impl_tuple!(t1: T1); impl_tuple!(t1: T1, t2: T2); impl_tuple!(t1: T1, t2: T2, t3: T3); impl_tuple!(t1: T1, t2: T2, t3: T3, t4: T4); impl_tuple!(t1: T1, t2: T2, t3: T3, t4: T4, t5: T5); impl_tuple!(t1: T1, t2: T2, t3: T3, t4: T4, t5: T5, t6: T6); impl_tuple!(t1: T1, t2: T2, t3: T3, t4: T4, t5: T5, t6: T6, t7: T7); impl_tuple!( t1: T1, t2: T2, t3: T3, t4: T4, t5: T5, t6: T6, t7: T7, t8: T8 ); } trait Scanner: BufRead + Sized { fn tokenizer(self) -> Tokenizer<Self> { Tokenizer::new(self) } } impl<R: BufRead> Scanner for R {} } pub use self::i::{with_stdin, with_str}; pub mod prelude { pub use super::i::{Parser, ParserTuple, RawTuple, Token, Usize1}; } } // }}}