2 条题解

  • 0
    @ 2025-6-20 11:44:59
    a=list(map(int,input().split()))
    if a[0]<60 and a[1]>=60 or a[0]>=60 and a[1]<60:
        print(1)
    else:
        print(0)
    
    • 0
      @ 2025-4-5 18:37:50
      #include<cstdio>
      using namespace std;
      int main(){
      	int a,b;
      	scanf("%d%d",&a,&b);
      	if(a<60&&b>=60){
      		printf("1");
      	}else if(a>=60&&b<60){
      		printf("1");
      	}else{
      		printf("0");
      	}
      	return 0;
      }
      
      • 1

      信息

      ID
      149
      时间
      1000ms
      内存
      64MiB
      难度
      7
      标签
      递交数
      14
      已通过
      12
      上传者