题解列表
1197: 发工资咯
摘要:```cpp
#include
using namespace std;
int Dno[6]={100,50,10,5,2,1};
int sum(int x)
{
int y=……
1196: 去掉空格
摘要:```cpp
#include
#include
using namespace std;
int main()
{
string str,temp;
while(get……
1195: 去掉双斜杠注释
摘要:```cpp
#include
using namespace std;
int main()
{
string str1="//",str;
int k;
wh……
1193: 半数集问题
摘要:```cpp
#include
#include
using namespace std;
int a[1005];
int f(int n)
{
if(a[n])
……
1192: 十->二进制转换
摘要:```cpp
#include
#include
using namespace std;
int n,flag=0;
vectorarr;
void BinaryChange(int n……
1191: 化学品问题
摘要:```cpp
#include
#include
using namespace std;
int t,n,m;
long long dp[35][35][35];
long long D……
暴力解法(凑字数。。。。。。。
摘要:解题思路:注意事项:参考代码:def shu(gewei,ci): if ci==1: return gewei else: return gewei*10*……