| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 330379 | 小林老师 | 【C2-10】数据分析 | C++ | Accepted | 100 | 2 MS | 244 KB | 209 | 2025-07-09 22:18:49 |
#include<iostream> using namespace std; int main(){ int n, a, sum=0, cnt=0; cin>>n; while(n>0){ a=n%10; if(a%2==0){ sum+=a; } cnt++; n/=10; } cout<<cnt<<" "<<sum; return 0; }