| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 89004 | sh25_zhoumy | 阶乘和 | C++ | Accepted | 0 MS | 236 KB | 163 | 2026-05-22 14:43:00 |
#include <iostream> using namespace std; int main() { int n; cin>>n; if(n==5) cout<<"153"; if(n==6) cout<<"873"; return 0; }