| Run ID | 作者 | 问题 | 语言 | 测评结果 | Time | Memory | 代码长度 | 提交时间 |
|---|---|---|---|---|---|---|---|---|
| 154216 | ErikaQAQ | [在线测评解答教程] 求和 | C++ | Wrong Answer | 1 MS | 272 KB | 218 | 2026-05-26 21:19:11 |
#include <iostream> using namespace std; int main() { int n = 0; while (cin >> n) { long long product = 1; for (int i = 1;i <= n;i++) { product *= i; } cout << product << endl; } return 0; }
------Input------
23 59
------Answer-----
276 1770
------Your output-----
8128291617894825984 162129586585337856