結果
問題 | No.800 四平方定理 |
ユーザー | tanzaku |
提出日時 | 2019-03-17 21:33:17 |
言語 | Rust (1.77.0 + proconio) |
結果 |
AC
|
実行時間 | 1,147 ms / 2,000 ms |
コード長 | 2,903 bytes |
コンパイル時間 | 13,790 ms |
コンパイル使用メモリ | 387,800 KB |
実行使用メモリ | 40,964 KB |
最終ジャッジ日時 | 2024-07-07 20:52:49 |
合計ジャッジ時間 | 25,957 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 7 ms
6,816 KB |
testcase_01 | AC | 14 ms
6,816 KB |
testcase_02 | AC | 9 ms
6,940 KB |
testcase_03 | AC | 10 ms
6,944 KB |
testcase_04 | AC | 10 ms
6,944 KB |
testcase_05 | AC | 11 ms
6,944 KB |
testcase_06 | AC | 15 ms
6,940 KB |
testcase_07 | AC | 15 ms
6,940 KB |
testcase_08 | AC | 9 ms
6,944 KB |
testcase_09 | AC | 14 ms
6,944 KB |
testcase_10 | AC | 514 ms
20,236 KB |
testcase_11 | AC | 535 ms
22,684 KB |
testcase_12 | AC | 583 ms
23,240 KB |
testcase_13 | AC | 432 ms
21,132 KB |
testcase_14 | AC | 465 ms
22,244 KB |
testcase_15 | AC | 577 ms
22,332 KB |
testcase_16 | AC | 476 ms
23,716 KB |
testcase_17 | AC | 483 ms
23,968 KB |
testcase_18 | AC | 666 ms
23,780 KB |
testcase_19 | AC | 679 ms
22,516 KB |
testcase_20 | AC | 1 ms
6,940 KB |
testcase_21 | AC | 1 ms
6,940 KB |
testcase_22 | AC | 689 ms
22,916 KB |
testcase_23 | AC | 1,147 ms
40,964 KB |
testcase_24 | AC | 890 ms
40,664 KB |
testcase_25 | AC | 1,144 ms
40,616 KB |
testcase_26 | AC | 1 ms
6,944 KB |
testcase_27 | AC | 1 ms
6,944 KB |
testcase_28 | AC | 897 ms
40,584 KB |
testcase_29 | AC | 1,026 ms
40,712 KB |
testcase_30 | AC | 892 ms
40,580 KB |
testcase_31 | AC | 821 ms
38,624 KB |
testcase_32 | AC | 944 ms
40,848 KB |
コンパイルメッセージ
warning: unused import: `std::collections::VecDeque` --> src/main.rs:72:5 | 72 | use std::collections::VecDeque; | ^^^^^^^^^^^^^^^^^^^^^^^^^^ | = note: `#[warn(unused_imports)]` on by default
ソースコード
#[allow(unused_macros)] macro_rules! input { (source = $s:expr, $($r:tt)*) => { input_inner!{$s, $($r)*} }; ($($r:tt)*) => { let stdin = std::io::stdin(); let mut bytes = std::io::Read::bytes(std::io::BufReader::new(stdin.lock())); let mut next = move || -> String{ bytes .by_ref() .map(|r|r.unwrap() as char) .skip_while(|c|c.is_whitespace()) .take_while(|c|!c.is_whitespace()) .collect() }; input_inner!{next, $($r)*} }; } #[allow(unused_macros)] macro_rules! input_inner { ($next:expr) => {}; ($next:expr, ) => {}; ($next:expr, $var:ident : $t:tt $($r:tt)*) => { let $var = read_value!($next, $t); input_inner!{$next $($r)*} }; ($next:expr, mut $var:ident : $t:tt $($r:tt)*) => { let mut $var = read_value!($next, $t); input_inner!{$next $($r)*} }; } #[allow(unused_macros)] macro_rules! read_value { ($next:expr, ( $($t:tt),* )) => { ( $(read_value!($next, $t)),* ) }; ($next:expr, [ $t:tt ; $len:expr ]) => { (0..$len).map(|_| read_value!($next, $t)).collect::<Vec<_>>() }; ($next:expr, string) => { read_value!($next, String).chars().collect::<String>() }; ($next:expr, chars) => { read_value!($next, String).chars().collect::<Vec<char>>() }; ($next:expr, bytes) => { read_value!($next, String).into_bytes() }; ($next:expr, usize1) => { read_value!($next, usize) - 1 }; ($next:expr, $t:ty) => { $next().parse::<$t>().expect("Parse error") }; } #[allow(unused)] use std::io::{Stdin, Bytes, BufReader, StdinLock}; use std::collections::VecDeque; fn lb(vec: &Vec<i32>, v: i32) -> usize { let mut low = -1_isize; let mut high = vec.len() as isize; while high - low > 1 { let mid = (low + high) / 2; if vec[mid as usize] < v { low = mid; } else { high = mid; } } high as usize } fn ub(vec: &Vec<i32>, v: i32) -> usize { let mut low = -1_isize; let mut high = vec.len() as isize; while high - low > 1 { let mid = (low + high) / 2; if vec[mid as usize] <= v { low = mid; } else { high = mid; } } high as usize } fn main() { input! { n: i32, d: i32, }; let mut sum = Vec::new(); let mut sub = Vec::new(); for i in 1..=n { for j in 1..=n { sum.push(i*i+j*j); } } for i in 1..=n { for j in 1..=n { sub.push(i*i-j*j); } } sum.sort(); let mut ans = 0; for i in sub.into_iter() { let l = lb(&sum, i + d); let u = ub(&sum, i + d); ans += u - l; } println!("{}", ans); }