2023年7月21日
摘要: #include<bits/stdc++.h> using namespace std; using i64 = long long; template<class T> constexpr T power(T a, i64 b) { T res = 1; for (; b; b /= 2, a * 阅读全文
posted @ 2023-07-21 17:19 yl_neo 阅读(62) 评论(0) 推荐(0)