比赛 | 咲 -Saki- 互测赛 | 评测结果 | AAAAAAAAAA |
---|---|---|---|
题目名称 | 我的天凤不可能这么简单 | 最终得分 | 100 |
用户昵称 | hello! | 运行时间 | 1.559 s |
代码语言 | C++ | 内存使用 | 10.76 MiB |
提交时间 | 2012-07-19 09:05:56 | ||
#include<iostream> #include<cstdio> using namespace std; long long n,m,num[1000001],rest=0,level; int main() { freopen("tenhous.in","r",stdin); freopen("tenhous.out","w",stdout); cin>>n>>m; for(long long i=1;i<=n;i++) { cin>>num[i]; rest+=num[i]; while(rest>=m) { level++; rest-=m; } if(i!=n) { rest/=2; } } cout<<level<<endl; cout<<rest<<endl; return 0; }