CSES - Datatähti 2023 loppu - Results
Submission details
Task:Pinta-ala
Sender:Laserr
Submission time:2023-01-23 14:36:36 +0200
Language:C++11
Status:READY
Result:0
Feedback
groupverdictscore
#10
Test results
testverdicttime
#1ACCEPTED0.01 sdetails
#20.01 sdetails
#30.01 sdetails

Code

#include <iostream>

typedef long long ll; 

using namespace std;

void pinta() {
	ll a, b;
	cin >> a >> b;
	if (b - a > 2) cout << "YES\n";
	else cout << "NO\n";
}

int main() {
	int t; 
	cin >> t;
	for (int i = 0; i < t; i++) pinta();
}

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
...