云海中的孤舟
云海中的孤舟
全部文章
题解
归档
标签
去牛客网
登录
/
注册
云海中的孤舟的博客
全部文章
/ 题解
(共3篇)
contest/85/C
contest/85/C #include<bits/stdc++.h> #define LL long long using namespace std; LL quick_pow(LL a,LL b,LL m){ LL ans = 1; if(b==0) ...
2020-05-25
2
482
contest/85/B
contest/85/B #include<bits/stdc++.h> using namespace std; int main(){ int t; int a,b,c; cin>>t; while(t--){ cin>...
2020-05-24
1
601
contest/85/A
contest/85/A #include<bits/stdc++.h> using namespace std; int main(){ int a,b,c,t; cin>>t; while(t--){ cin>>a>...
2020-05-24
5
624