【NOIP2015】【Luogu2669】金币(模拟)
【摘要】
problem
骑士在连续的N天里每天收到N枚金币,骑士会在之后的连续 N+1 天里,每天收到 N+1 枚金币。求骑士在前K天里一共收到了多少金币
solution
直接模拟死循环n天。
code...
problem
- 骑士在连续的N天里每天收到N枚金币,骑士会在之后的连续 N+1 天里,每天收到 N+1 枚金币。
- 求骑士在前K天里一共收到了多少金币
solution
- 直接模拟死循环n天。
codes
#include<iostream>
#include<algorithm>
using namespace std;
int main(){
int n; cin>>n;
int ans = 0, t = 0;//金币,天数
for(int i = 1; 1; i++){
t += i;
ans += i*i;
if(t > n){
t -= i;
ans -= i*i;
ans += i*(n-t);
break;
}
}
cout<<ans<<'\n';
return 0;
}
文章来源: gwj1314.blog.csdn.net,作者:小哈里,版权归原作者所有,如需转载,请联系作者。
原文链接:gwj1314.blog.csdn.net/article/details/80951739
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)