Use const instead of constexpr

This commit is contained in:
Anthony Wang 2022-03-05 21:18:23 -06:00
parent eed6ab5683
commit fb11661637
Signed by: a
GPG Key ID: BC96B00AEC5F2D76
3 changed files with 6 additions and 6 deletions

4
1.cpp
View File

@ -4,10 +4,10 @@
using namespace std;
using ll = long long;
using ii = pair<int, int>;
constexpr int MX = 1e5+5;
const int MX = 1e5+5;
int main() {
cin.tie(0)->sync_with_stdio(0);
}
}

4
2.cpp
View File

@ -4,10 +4,10 @@
using namespace std;
using ll = long long;
using ii = pair<int, int>;
constexpr int MX = 1e5+5;
const int MX = 1e5+5;
int main() {
cin.tie(0)->sync_with_stdio(0);
}
}

4
3.cpp
View File

@ -4,10 +4,10 @@
using namespace std;
using ll = long long;
using ii = pair<int, int>;
constexpr int MX = 1e5+5;
const int MX = 1e5+5;
int main() {
cin.tie(0)->sync_with_stdio(0);
}
}