Different game 构造法
Source
My Solution
1 1 1 1 2 2 3 3 3 3 3 3 1 2 3
#include
#include
using namespace std;
const int HASH = 1000000007;
int main()
{
int m, n, c;
long long ans = 0;
scanf("%d%d", &m, &n);
for(int i = 1; i <= n; i++){
scanf("%d", &c);
ans = (ans + (c/m)*(m*(m-1)/2) + (c%m)*(c%m-1)/2) % HASH;
}
printf("%lld", ans);
return 0;
}
非特殊说明,本博所有文章均为博主原创,未经许可不得转载。
https://www.prolightsfxjh.com/
Thank you!
------from ProLightsfx
非特殊说明,本博所有文章均为博主原创,未经许可不得转载。
如经许可后转载,请注明出处:https://prolightsfxjh.com/article/uestc-1050-different-game/
共有 0 条评论