10 条题解

  • 0
    @ 2022-10-18 17:09:53
    #include<iostream>
    using namespace std;
    int main(){
    int a,b;
    cin >> a >> b;
    if (a % 19 == 0 && b % 10 == 3){
    	cout << "YES" << endl;
    } else {
    	cout << "NO" << endl;
    }
    }
    

    信息

    ID
    909
    时间
    1000ms
    内存
    128MiB
    难度
    6
    标签
    递交数
    434
    已通过
    148
    上传者