| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 9179 | 陈颖钧 | 阿尔法乘积 | C++ | Wrong Answer | 20 | 0 MS | 260 KB | 291 | 2025-04-08 19:56:58 |
#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!=0){ b*=i%10; } i/=10; } n=b; } cout<<n; return 0; }