aboutsummaryrefslogtreecommitdiff
path: root/2022/01/a.rs
blob: 77e57e414208a7736f3979664854008c2d7eb91a (plain)
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