摘要:
例题 #include <bits/stdc++.h> using namespace std; using ull = unsigned long long; using ll = long long; using ldb = long double; using db = double; tem 阅读全文
摘要:
const int mod = 1e9 + 7; struct mint{ mint(){} mint(int _k){ k = _k; } int k; mint & operator = (const int &_k){ k = _k; return *this; } friend mint o 阅读全文