1 2 3 4 5 6 7 8
mod common; use common::*; fn main() { let e = get_elves_from_stdin(); let m: i64 = e.iter().map(|a| a.iter().sum()).max().unwrap(); println!("{m}"); }
Generated with cgit - Back to sebastiano.tronto.net