Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
55894 | 朱宸瑜 | 流量 | C++ | 解答错误 | 0 | 0 MS | 252 KB | 223 | 2022-07-31 19:14:43 |
#include<iostream> using namespace std; long long ans,x,n,p; int main(){ cin>>x>>n; for(int i=0;i<n;i++){ ans+=x; cin>>p; if(ans-p>=0) ans-=p; else cerr<<"Error!"; } cout<<ans+10; return 0; }