Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
169727 | 赖泓君 | 被限制的加法 | C++ | 通过 | 100 | 1 MS | 256 KB | 711 | 2024-08-20 16:47:02 |
#include<iostream> #include<cstdio> using namespace std; int n,a,b,c,n9,sum,i,j; bool first; int main() { ios::sync_with_stdio(false); cin>>n; first=1; c=0; n9=0; for(i=1;i<=n;i++){ cin>>a>>b; sum=a+b; if(sum<9){ if(c>0||first==0) cout<<c; for(j=1;j<=n9;j++) cout<<9; first=0; n9=0; c=sum; } else if(sum==9) n9++; else{ c++; cout<<c; for(j=1;j<=n9;j++) cout<<0; first=0; n9=0;c=sum-10; } } cout<<c; for(j=1;j<=n9;j++) cout<<9; return 0; }