摘要:
// // secondViewController.m // test // // Created by bytedance on 2021/1/20. // #import "secondViewController.h" #import <Masonry/Masonry.h> @interfa 阅读全文
摘要:
```cpp #pragma GCC optimize(3) #include typedef long long ll; using namespace std; const int N=2e3+5; const int mod=998244353; int n,m,d; int a[N],c[N]; int main() { scanf("%d%d%d",&n,&m,&d); int sum= 阅读全文
摘要:
$预先枚举1e10以内所有数的k次方,然后每一个ai都去找他所有的1e5以内的倍数,更新答案。$ $复杂度\sqrt[k]{1e10}\times{\sqrt{1e5}\times{2}}$ cpp include typedef long long ll; using namespace std; 阅读全文