結果
問題 | No.325 マンハッタン距離2 |
ユーザー | koba-e964 |
提出日時 | 2016-03-23 17:32:56 |
言語 | Rust (1.77.0 + proconio) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,874 bytes |
コンパイル時間 | 12,499 ms |
コンパイル使用メモリ | 390,148 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-10-01 21:34:00 |
合計ジャッジ時間 | 13,831 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
6,816 KB |
testcase_01 | AC | 1 ms
6,816 KB |
testcase_02 | AC | 1 ms
6,816 KB |
testcase_03 | AC | 1 ms
6,816 KB |
testcase_04 | AC | 1 ms
6,820 KB |
testcase_05 | AC | 1 ms
6,816 KB |
testcase_06 | AC | 1 ms
6,816 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | AC | 1 ms
6,820 KB |
testcase_11 | AC | 1 ms
6,816 KB |
testcase_12 | AC | 1 ms
6,820 KB |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 1 ms
6,816 KB |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | AC | 1 ms
6,816 KB |
testcase_24 | AC | 1 ms
6,816 KB |
testcase_25 | AC | 1 ms
6,816 KB |
testcase_26 | AC | 1 ms
6,820 KB |
ソースコード
#[allow(unused_imports)] use std::cmp::*; use std::io::*; #[allow(dead_code)] fn getline() -> String { let mut ret = String::new(); std::io::stdin().read_line(&mut ret).ok(); return ret; } #[allow(dead_code)] fn getword() -> String { let mut stdin = std::io::stdin(); let mut u8b: [u8; 1] = [0]; loop { let mut buf: Vec<u8> = Vec::with_capacity(16); loop { let res = stdin.read(&mut u8b); if res.is_err() ||u8b[0] <= ' ' as u8 { break; } else { buf.push(u8b[0]); } } if buf.len() >= 1 { let ret = std::string::String::from_utf8(buf).unwrap(); return ret; } } } #[allow(dead_code)] fn parse<T : std::str::FromStr>(s : &str) -> T { return s.parse::<T>().ok().unwrap(); } fn calc2(x: i64, y: i64, d: i64) -> i64 { if x < 0 && y < 0 { return calc(-x - 1, -y - 1, d) - calc(0, -y - 1, d) - calc(-x - 1, 0, d) + 1; } if x < 0 { return - calc(-x - 1, y, d) + calc(0, y, d); } if y < 0 { return calc(y, x, d); } assert!(x >= 0 && y >= 0); if x + y <= d { return (x + 1) * (y + 1); } if x > y { return calc(y, x, d); } assert!(x <= y); if d <= x { return (d + 1) * (d + 2) / 2; } if d <= y { return (2 * d - x) * (x + 1) / 2; } let e = x + y - d; return (x + 1) * (y + 1) - e * (e + 1) / 2; } fn calc(x: i64, y: i64, d: i64) -> i64 { let res = calc2(x, y, d); return res; } fn main() { let (x1, y1): (i64, i64) = (parse(&getword()), parse(&getword())); let (x2, y2): (i64, i64) = (parse(&getword()), parse(&getword())); let d = parse(&getword()); println!("{}", calc(x2, y2, d) + calc(x1 - 1, y1 - 1, d) - calc(x2, y1 - 1, d) - calc(x1 - 1, y2, d)); }