17 条题解

  • -1
    @ 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;
    }
    

    信息

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