CSES - Datatähti 2023 loppu - Results
Submission details
Task:Pinta-ala
Sender:UpHereNorth
Submission time:2023-01-21 14:09:15 +0200
Language:C++17
Status:READY
Result:0
Feedback
groupverdictscore
#10
Test results
testverdicttime
#1ACCEPTED0.00 sdetails
#20.00 sdetails
#30.00 sdetails

Code

#include <bits/stdc++.h>

using namespace std;
using ll = long long;


void solve(){

    // grows max by (1 * (A+1)
    // and min
    // 0.0000001 * A
    // 1.0000001 * (A+1)
    // must grow by more than 1
    // 
    int a, b;
    cin >> a >> b;
    if(b < a){
        cout << "NO\n";
        return;
    }
    if(b - a < 3){
        cout << "NO\n";
        return;
    }
    cout << "YES\n";

}


int main(){

    ios::sync_with_stdio(0);
    cin.tie(0);
    int t;
    cin >> t;
    while(t--)solve();

    // 




}

Test details

Test 1

Verdict: ACCEPTED

input
1000
578049 731905
262997 434601
559974 650052
458543 101143
...

correct output
YES
YES
YES
NO
NO
...

user output
YES
YES
YES
NO
NO
...

Test 2

Verdict:

input
1000
10000 9500
10000 9501
10000 9502
10000 9503
...

correct output
NO
NO
NO
NO
NO
...

user output
NO
NO
NO
NO
NO
...

Test 3

Verdict:

input
961
1 1
1 2
1 3
1 4
...

correct output
NO
NO
NO
YES
YES
...

user output
NO
NO
NO
YES
YES
...