| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 313451 | 方相宜 | 【C1-5】计算各位和 | C++ | Wrong Answer | 0 | 1 MS | 252 KB | 184 | 2025-03-21 21:11:07 |
#include<iostream> using namespace std; int main(){ int n,b,c,d,f,z; cin>>n; c=n/10%10; b=n/10%1; c=n/10%100; d=n/10%1000; f=n/10%10000; cout<<b+c+d+f; return 0; }