随笔分类 -  比赛题解

摘要:比赛链接https://www.luogu.com.cn/contest/56279 代码是看了直播讲解之后写(cv)出来的~ A题: 听了直播讲解后……我才明白这题是纯纯暴力啊,我还以为要用string判断再转回int啥啥啥的…… 这份代码是C++的 #include <bits/stdc++.h 阅读全文
posted @ 2021-11-20 22:34 Selma003 阅读(800) 评论(0) 推荐(0)
摘要:原题链接:https://codeforces.com/problemset/problem/208/A 学习链接:https://blog.csdn.net/cs_zlg/article/details/7782625 #include <bits/stdc++.h> using namespac 阅读全文
posted @ 2021-10-25 12:15 Selma003 阅读(40) 评论(0) 推荐(0)
摘要:原题链接:https://codeforces.com/problemset/problem/82/A #include<bits/stdc++.h> using namespace std; int main(){ //1 2 3 4 //5 10 20 40 //等比数列 a^n = a^1 * 阅读全文
posted @ 2021-10-23 23:22 Selma003 阅读(51) 评论(0) 推荐(0)