| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 75881 | sh25_shenpy | 奇数项的和及偶数项的积 | C++ | Wrong Answer | 0 MS | 252 KB | 232 | 2025-12-10 22:15:57 |
#include<iostream> using namespace std; int n[1098]; int main(){ int s,k=0,f=1; cin>>s; for(int i=0;i<s;i++){ cin>>n[i]; if(i%2==1) f*=n[i]; else s+=n[i];} cout<<k<<" "<<f; return 0;}