| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 313453 | 方相宜 | 【C1-7】数学考试 | C++ | Accepted | 100 | 1 MS | 240 KB | 140 | 2025-03-21 21:16:50 |
#include<iostream> using namespace std; int main(){ int n; cin>>n; if(n<60){ cout<<0; } else{ cout<<1; } return 0; }