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

AtCoder Beginner Contest 254 B

https://atcoder.jp/contests/abc254/tasks/abc254_b let mut b = Vec::with_capacity(a.len() + 1); b.set_len(a.len() + 1); でVecのサイズを変えられそうですが、 error[E0133]: call to unsafe function is unsafe and requires unsafe function or bloc…