| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 12198 | A班-袁誉晏 | 求1!+2!+...+N! | C++ | Wrong Answer | 0 | 1 MS | 256 KB | 144 | 2025-07-08 14:24:32 |
#include <bits/stdc++.h> using namespace std; int a(int b) { return b*b; } int main() { int n; cin>>n; cout<<a(n); return 0; }