| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 430653 | 方相宜 | 【C1-4】计算(a+b)*c的值 | C++ | Wrong Answer | 0 | 6 MS | 240 KB | 126 | 2026-02-26 20:35:39 |
#include<bits/stdc++.h> using namespace std; int main(){ int a,b,c; cin>>a>>b>>c; cout<<(a+b)*c; return 0; }