[Boot camp for Beginners] C - Rally [Rust]
概要
AtCoder Problems: Boot camp for Beginners をRustで解いてみる
- 今回の問題:C - Rally
- 書いたコード: AtCoder_Problems_Boot_Camp_for_Beginners/easy100/c_rally at main · homura10059/AtCoder_Problems_Boot_Camp_for_Beginners
学んだことmemo
min_by()
で評価条件を指定した min が実行できる- tuple の array から 2番目の値が最小のものを取り出したりできる
- 稀によく使いそう
min..=max
でminからmaxまでの数値レンジを生成できるmin..max
だと min から max-1 までになるので注意
- 以下のように入力で受け取った数値そのままでarrayのlengthを設定することが可能
- これは便利そう
input! {
n: i16,
x: [i16; n]
}