题解列表

筛选

编写题解 1388: GC的苦恼

摘要:解题思路:注意事项:参考代码:#include <stdio.h> int main() {   int a;   while (scanf("%d", &a) != EOF) {     i……

编写题解 1390: 大神老白

摘要:解题思路:注意事项:参考代码:#include <math.h> #include <stdio.h> #include <stdlib.h> int main() {   int a, ……

去 N M 的雇佣兵(题目都看不懂)

摘要:解题思路:        这个题目真的很烦,不看个一两秒钟很难理解首先,我们输入的是M,N,X,分别代表 最大体力,初始战斗力,初始能量元素第二,要知道题目要我们求的是最大战斗力,还有不要理解为他有多……

3004: 成绩(c++代码)

摘要:最后的输出结果要是整型才能通过哦! ```cpp #include using namespace std; int main() { int a,b,c; cin>>a……