Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
---|---|---|---|---|---|---|---|---|---|
350989 | 胡珂 | 【C1-T】计算期末成绩总分 | C++ | Accepted | 100 | 1 MS | 248 KB | 125 | 2025-09-20 19:41:46 |
#include <bits/stdc++.h> using namespace std; int main(){ int a,b,c,d; cin>>a>>b>>c>>d; cout<<a+b+c+d; return 0; }