| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 330411 | 李俞家骅 | 【C1-4】四个数之和 | C++ | Accepted | 100 | 5 MS | 244 KB | 132 | 2025-07-10 09:42:22 |
#include<iostream> using namespace std; int main() { int a,b,c,d; cin>>a>>b>>c>>d; cout<<a+b+c+d; return 0; }