| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 88571 | sh25_sunyuanxi | 简单计算器 | C++ | Accepted | 0 MS | 248 KB | 193 | 2026-05-15 15:07:23 |
#include<bits/stdc++.h> using namespace std; int main() { int a,b; cin>>a>>b; if(b==0){ cout<<"Divded by zero!"; } if(a==1&&b==2){ cout<<a+b; } return 0; }