| 比赛 | CSP2023-S模拟赛 | 评测结果 | RRRRRRRRRRRRRRRRRRRR |
|---|---|---|---|
| 题目名称 | Maximized Combos | 最终得分 | 0 |
| 用户昵称 | whaleeee | 运行时间 | 0.000 s |
| 代码语言 | C++ | 内存使用 | 0.00 MiB |
| 提交时间 | 2023-10-17 21:06:10 | ||
#include<bits/stdc++.h>
using namespace std;
int m,n;
long long sum;
int main()
{
/*freopen("combos.in","r",stdin);
freopen("combos.out","w",stdout);
cin>>n>>m;
for(int s=1;s<=m;s++)
{
int ra=m/s;
int l=m-ra*s;
int co=(n+1)/(s+1);
if(co<ra) printf("%d",0);
else
{
int len=m+ra;
ra++;
if(l==0)
{
len--;
ra--;
}
}
}*/
}