| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 350015 | 沈昊煊 | 【C1-7】童童当裁判 | C++ | Accepted | 100 | 7 MS | 244 KB | 206 | 2025-09-19 20:10:49 |
#include<iostream> using namespace std; int main(){ int n,ge,shi; cin>>n; ge=n%10; shi=n/10%10; if(ge==shi){ cout<<"win"; }else{ cout<<"lose"; } return 0; }