题解列表

筛选

动态规划!!!

摘要:```cpp // f[i][j] = f[i - 1][j] + f[i][j - i] #include using namespace std; const int N = 1……

饮料换购python

摘要:解题思路:蓝桥杯2015年第六届真题-饮料换购 - C语言网 (dotcpp.com)注意事项:参考代码:n = int(input())ans = 0while n>2:    mod = n % ……

1000:简单而又容易出错的题

摘要:解题思路:本题很简单,但是注意此题是多组测试数据,即需要不停的接收系统的测试输入,你都可以计算结果并输出,像本人第一次输出只写了一次简单的a+b,全错QwQ:#include<cstdio>#incl……

1001:新手题1

摘要:解题思路:一个打印题目,用cout即可,但是注意*号!错误代码:#include<iostream>using namespace std;int main(){ cout<<"Hello,World……

简洁,详细,c++

摘要:```cpp #include using namespace std; int main(){ long long time; cin >>……