▽ビジネスのネタ ●04/10 22:00 2022.04.10AtCoderメモ2022.04.09bits/stdc++.hでfatal error: 'cstdalign' file not found (gcd(a,b))AtCoderメモ2022/4/10最大・最小 int max = *max_element(v.begin(), v.end()); int min = *min_element(v.begin(), ...bits/stdc++.hでfatal error: 'cstdalign' file not found (gcd(a,b))2022/4/9g++ hoge.cpp だとgcd()がエラー。バージョンC17以上にする必要があるらしい。 g++ hoge.cpp -std=c++20 でバージョン指定して実行。やると「fatal error: 'cstdalign' file ..