| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 430702 | 许清菡 | 【C1-7】数学考试 | C++ | Accepted | 100 | 5 MS | 244 KB | 155 | 2026-02-27 16:21:00 |
#include<iostream> #include<iomanip> using namespace std; int main(){ int n; cin>>n; if(n<60){ cout<<0; }else{ cout<<1; } return 0; }