摘要:
A 没有一百毫升有A卡路里,B毫升中有多少卡路里 #include <bits/stdc++.h> using namespace std; int main() { double a , b; cin >> a >> b; cout << a * b / 100 << endl; return 0 阅读全文
摘要:
A 正反各跑一遍匹配 正着满足,反着不满足,没有坐反 正着不满足,反着满足,坐反 都满足,不知道 #include <bits/stdc++.h> using namespace std; int n , m , x , y , a[20] , b[20] , c1[20] , c2[20] , o 阅读全文
摘要:
A 签到 #include <bits/stdc++.h> using namespace std; int main() { int a , b; cin >> a >> b; cout << a * b << endl; return 0; } B 签到,用long long #include 阅读全文
摘要:
A 给一个数列[1...5]其中有一位是错误的,错误位置是0,问哪一位错误 #include <bits/stdc++.h> using namespace std; int main() { for( int i = 1 , x ; i <= 5 ; i ++ ) { cin >> x; if( 阅读全文
摘要:
题目链接 A 签到题 #include <bits/stdc++.h> using namespace std; int a , b ; int main() { cin >> a >> b; if( a < b ) puts("0"); else puts("10"); } B 枚举即可,判断特殊 阅读全文
摘要:
A.祝融传火 输入之后,暴力枚举$(x,y)$判断即可 #include <bits/stdc++.h> using namespace std; const int N = 1005; int n , m , a[N][N] , h , w ; bool flag = 0; inline int 阅读全文
摘要:
A 若三个数相同,答案都是一 若两个数相等大于第三个,相等两数答案为一,第三数答案是大数减小数加一 若一个数严格大于另外两数,最大数为零两个小数为大数减小数加一 #include <bits/stdc++.h> using namespace std; int n , a , b , c ; int 阅读全文
摘要:
luogu题目选做 阅读全文
摘要:
luogu题目部分选择,截止日期2021-10-02 阅读全文
摘要:
备战CSP-S时做的笔记,内有大量公式,打开可能较慢 阅读全文