16 条题解

  • 1
    @ 2023-6-28 10:56:17
    #include <iostream>
    #include <stdio.h>
    #include <iomanip>
    #include <math.h>
    using namespace std;
    const int N = 1e6 + 10;
    const int INF = 0x3f3f3f3f;
    int main()
    {
    	int x , g;
    	cin >> x >> g;
    	if( x >= 10 && g >= 20 )
    	{
    		cout << 1;
    	}
    	else
    	{
    		cout << 0;
    	}
    	return 0;
    }
    
    • 1
      @ 2023-1-26 16:24:35
      #include <bits/stdc++.h>
      using namespace std;
      int main(){
          int a,b;
          cin>>a>>b;
          if(a>=10&&b>=20){
          	cout<<1;
      	}else{
      		cout<<0;
      	}
          return 0;
      }
      
      
      • 0
        @ 2024-11-15 18:01:28
        #include <stdio.h>
        //#include <iostream> 
        #define int long long
        //using namespace std;
        bool b(int n, int m){
        	if(n > 9  && m > 19)
        		return 1;
        	return 0;
        }
        signed main() {
        	int n , m; 
        	scanf("%lld %lld", &n , &m);
        	printf("%d\n" , b(n , m)); 
        	return 0;
        }
        
        • 0
          @ 2024-4-12 20:16:11
          #include <iostream>
          #include <stdio.h>
          #include <iomanip>
          #include <math.h>
          using namespace std;
          int main()
          {
              int a,b;
              cin >> a >> b;
              if(a >=10 &&b>= 20)
              {
                  cout<<"1";
              }
              else
              {
                  cout<<"0";
              }
          	return 0;
          }
          
          
          
          • 0
            @ 2024-4-12 20:13:34
            #include <iostream>
            #include <stdio.h>
            #include <iomanip>
            #include <math.h>
            using namespace std;
            const int N = 1e6 + 10;
            const int INF = 0x3f3f3f3f;
            int main()
            {
            	int x , g;
            	cin >> x >> g;
            	if( x >= 10 && g >= 20 )
            	{
            		cout << 1;
            	}
            	else
            	{
            		cout << 0;
            	}
            	return 0;
            }
            
            • 0
              @ 2024-4-6 12:39:45
              • #include <iostream> #include <cstdio> #include <cstring> #include <iomanip> #include <cmath> #include <algorithm> const int N = 1e5 + 10; const int INF = 0x3f3f3f3f; int a,b; using namespace std; int main(){ cin>>a>>b; a10&&b20?cout<<"1":cout<<"0"; return 0; }
              • 0
                @ 2024-3-19 16:54:03
                #include <iostraem>
                using namespace std;
                int main()
                {
                	int a, z;
                	cin>>a>>z;
                	if (a>= 10 && z >= 20 )
                
                {
                	cout<<1;
                }
                else
                {
                	cout<<0;
                }
                return 0;
                

                }

                我就看谁傻傻地直接超题解
                
                • 0
                  @ 2023-8-3 22:09:15
                  #include <iomanip>
                  #include <iostream>
                  
                  using namespace std;
                  int main()
                  {
                      int a,b;
                      cin>>a>>b;
                      if(a>=10&&b>=20)
                      {
                          cout<<1;
                      }
                      else
                      {
                          cout<<0;
                      }
                      return 0;
                  }
                  
                  
                  • 0
                    @ 2023-4-4 20:57:30

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

                    • 0
                      @ 2023-3-1 20:28:29

                      #include <iostream> using namespace std;

                      int a , b;

                      int main(){

                      cin >> a >> b;
                      if( a >=10 && b>=20)
                      {
                      	cout << 1;
                      }
                      else
                      {
                      	cout << 0;
                      }
                      
                      
                      return 0;
                      

                      }

                      • 0
                        @ 2022-10-7 18:51:43
                        #include<bits/stdc++.h> 
                        using namespace std;
                        int main(){
                        	int a,b;
                        	cin>>a>>b;
                        	if(a>9&&b>19)cout<<1;
                        	else cout<<0;
                        }
                        
                        • 0
                          @ 2022-1-2 14:57:45
                          #include<iostream>
                          #include<cstdio>
                          #include<cmath>
                          using namespace std;
                          int main()
                          {
                          int a,b;
                          cin>>a>>b;
                          if (a>9 || b>19)
                          cout<<"1";
                          else
                          cout<<"0";
                          }
                          
                          • -1
                            @ 2022-3-28 20:30:40

                            #include<iostream>

                            using namespace std;

                            int main()

                            {

                            int a,b;

                            cin>>a>>b;

                            if (a>9 || b>19){

                            cout<<"1";

                            }else{

                            cout<<"0";

                            }

                            }

                            //abcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabcabc

                            • -2
                              @ 2022-7-2 17:17:28

                              #include<stdio.h> #include<iostream> using namespace std; int main() { int a,b; cin>>a>>b; if(a>=10&&b>=20) { cout<<1<<endl; }else { cout<<0<<endl; } }

                              • -3
                                @ 2022-1-2 15:05:46
                                #include<iostream>
                                #include<cstdio>
                                #include<cmath>
                                using namespace std;
                                int main()
                                {
                                int a,b;
                                cin>>a>>b;
                                if (a>9 || b>20)
                                cout<<"1";
                                else
                                cout<<"0";
                                }
                                
                                • -4
                                  @ 2022-1-2 15:58:46
                                  #include <stdio.h>
                                  #include <iostream>
                                  #include <math.h>
                                  #include <iomanip>
                                  using namespace std;
                                  int main()
                                  {
                                  	int a,b;
                                  	cin>>a,b;
                                  	if(a>9||b>19)
                                  	{
                                  		cout<<"1";
                                  	}
                                  	else
                                  	{
                                  		cout<<"0";
                                  	}
                                  }
                                  
                                  • 1

                                  信息

                                  ID
                                  881
                                  时间
                                  1000ms
                                  内存
                                  128MiB
                                  难度
                                  2
                                  标签
                                  递交数
                                  695
                                  已通过
                                  404
                                  上传者