| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 430704 | 许清菡 | 【C1-7】小童的噩梦 | C++ | Wrong Answer | 33 | 2 MS | 240 KB | 154 | 2026-02-27 16:25:50 |
#include<iostream> #include<iomanip> using namespace std; int main(){ int n; cin>>n; if(n=9){ cout<<0; }else{ cout<<1; } return 0; }