| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 339109 | 李明灿 | 【C1-4】计算(a+b)*c的值 | C++ | Wrong Answer | 0 | 2 MS | 236 KB | 120 | 2025-08-10 21:07:48 |
#include<bits/stdc++.h> using namespace std; int main(){ int a,b,c; cin>>a>>b>>c; cout<<(a+b)*c; return 0; }