| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 9180 | 陈颖钧 | 阿尔法乘积 | C++ | Accepted | 100 | 1 MS | 264 KB | 294 | 2025-04-08 19:57:27 |
#include<bits/stdc++.h> using namespace std; int n,b=1,i; int main(){ cin>>n; while(n>=10){ i=n; b=1; while(i>0){ if(i%10!=0){ b*=i%10; } i/=10; } n=b; } cout<<n; return 0; }