CSES - Datatähti 2023 loppu - Results
Submission details
Task:Pinta-ala
Sender:Mahtimursu
Submission time:2023-01-21 13:23:24 +0200
Language:C++17
Status:READY
Result:100
Feedback
groupverdictscore
#1ACCEPTED100
Test results
testverdicttime
#1ACCEPTED0.01 sdetails
#2ACCEPTED0.01 sdetails
#3ACCEPTED0.00 sdetails

Code

#include <bits/stdc++.h>

using namespace std;

using ll = long long;
using ld = long double;

int main() {
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    int n;
    cin >> n;

    for (int i = 0; i < n; ++i) {
        ld a, b;
        cin >> a >> b;

        ld mn = 1e9;

        bool ok = 0;

        for (ld ta = 1; ta * ta <= a; ++ta) {
            ld tb = a / ta;

            mn = min(mn, (ta + 1) * (tb + 1));
        }

        if (mn <= b) ok = 1;

        cout << (ok ? "YES" : "NO") << "\n";
    }

    return 0;
}

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: ACCEPTED

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: ACCEPTED

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

correct output
NO
NO
NO
YES
YES
...

user output
NO
NO
NO
YES
YES
...