2 条题解

  • 1
    @ 2025-11-30 10:28:27
    #include<bits/stdc++.h>
    using namespace std;
    int main(){
        int s=0,a,b,c;
        cin>>a>>b>>c;
        if(a<60)
            s++;
        if(b<60)
            s++;
        if(c<60)
            s++;
        if(s==1)
            cout<<1;
        else
            cout<<0;
        return 0;
    }
    
    • 0
      @ 2025-12-17 20:49:03
      using namespace std;
      int main()
      {
      	srand(time(NULL));
      	cout<<rand();
      	return 0;
      }
      
      
      • 1

      信息

      ID
      6901
      时间
      1000ms
      内存
      128MiB
      难度
      1
      标签
      递交数
      55
      已通过
      18
      上传者