| Run ID | Author | Problem | Lang | Verdict | Time | Memory | Code Length | Submit Time |
|---|---|---|---|---|---|---|---|---|
| 77723 | sh25_shengmy | 有一门课不及格的学生 | C++ | Accepted | 0 MS | 244 KB | 289 | 2025-12-26 14:43:10 |
#include <bits/stdc++.h> using namespace std; int main() { int chinese, math; cin >> chinese >> math; if ((chinese < 60 && math >= 60) || (chinese >= 60 && math < 60)) { cout << 1 << endl; } else { cout << 0 << endl; } return 0; }