Run ID 作者 问题 语言 测评结果 Time Memory 代码长度 提交时间
125476 陈淮遇 简单计算 C++ Accepted 0 MS 272 KB 220 2025-07-14 16:48:06

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; long f=a*b*c*d*e; cin>>a>>b>>c>>d>>e; cout << f; return 0; }