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

Compiler report

input/code.cpp: In function 'int main()':
input/code.cpp:13:28: warning: variable 'puolet' set but not used [-Wunused-but-set-variable]
   13 |     int ala, tavoite, ero, puolet, k;
      |                            ^~~~~~
input/code.cpp:13:36: warning: variable 'k' set but not used [-Wunused-but-set-variable]
   13 |     int ala, tavoite, ero, puolet, k;
      |                                    ^

Code

#include <bits/stdc++.h>
using namespace std;
int main()
{
ios_base::sync_with_stdio(false);
cin.tie(nullptr);
int t;
cin >> t;
int ala, tavoite, ero, puolet, k;
for (int i = 0; i < t; i++)
{
cin >> ala;
cin >> tavoite;
ero = tavoite - ala;
puolet = (ero + 1) / 2;
if (ero <= 0)
{
cout << "NO\n";
continue;
}
k = ero - 1;
double sqr = sqrt(ala);
double lisays = sqr * 2 - 1;
if (lisays <= ero)
{
cout << "YES\n";
}
else
{
cout << "NO\n";
}
}
}

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

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

Test 3

Verdict:

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

correct output
NO
NO
NO
YES
YES
...

user output
NO
YES
YES
YES
YES
...
Truncated