| Run ID | Author | Problem | Lang | Verdict | Score | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|---|
| 310793 | 蒋宇阳 | 【C1-7】整除问题 | C++ | Wrong Answer | 0 | 1 MS | 252 KB | 132 | 2025-03-02 10:49:00 |
#include<iostream> using namespace std; int main(){ int n; cin>>n; if(n<60) cout<<0; else cout<<1; return 0; }