9 条题解

  • 2
    @ 2026-6-12 20:37:08
    #include <bits/stdc++.h>
    using namespace std;
    
    int main() {
    	int a, b;
    	cin >> a >> b ;
    	if (a < 60 && b >= 60 || b < 60 && a >= 60)
    		cout << "1";
    	else
    		cout << "0";
    	return 0;
    }
    
    
    

    67牛逼 six-seven

    【条件】有一门课不及格的学生

    信息

    ID
    30938
    时间
    1000ms
    内存
    256MiB
    难度
    7
    标签
    (无)
    递交数
    175
    已通过
    46
    上传者