2022-07-07から1日間の記事一覧

AtCoder Beginner Contest 250 A

https://atcoder.jp/contests/abc250/tasks/abc250_a座標の問題なので、Pointという構造体を作ります。 struct Point { x: i32, y: i32, } 要素をカンマ区切りで並べるだけです。 メソッドは次のように書きます。 impl Point { fn add(&self, other: &Point)…