3 条题解

  • 1
    @ 2025-3-23 11:52:08

    #include <bits/stdc++.h> using namespace std;

    int main(){ int n,m; cin>>n>>m; if (n>=10 || m>=20)cout<<"1"; else cout<<"0";

    return 0;}

    • 1
      @ 2025-1-26 16:30:16
      #include<bits/stdc++.h>
      using namespace std;
      int main(){
      	int n,x;
      	cin>>n>>x;
      	if(n>=10||x>=20) cout<<"1";
      	else cout<<"0"; 
      	return 0;
      }
      
      • -1
        @ 2025-1-20 21:27:43

        #include <bits/stdc++.h> using namespace std; int main() { long long a,b; cin>>a>>b; if(a>=10||b>=20) { cout<<"1"; } else { cout<<"0"; } return 0; }

        • 1

        信息

        ID
        431
        时间
        1000ms
        内存
        128MiB
        难度
        2
        标签
        (无)
        递交数
        99
        已通过
        64
        上传者