Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
125518 袁梓豪 简单计算 C++ Accepted 0 MS 264 KB 142 2025-07-14 17:34:01

Tests(1/1):


Code:

#include <bits/stdc++.h> using namespace std; int main() { int a=1; int b=2; int c=3; int d=4; int e=5; cout<<a*b*c*d*e; return 0; }