Task: | Pinta-ala |
Sender: | andreibe |
Submission time: | 2023-01-21 14:55:12 +0200 |
Language: | C++ (C++11) |
Status: | READY |
Result: | 0 |
group | verdict | score |
---|---|---|
#1 | WRONG ANSWER | 0 |
test | verdict | time | |
---|---|---|---|
#1 | WRONG ANSWER | 0.01 s | details |
#2 | WRONG ANSWER | 0.01 s | details |
#3 | WRONG ANSWER | 0.01 s | details |
Code
#include <bits/stdc++.h>using namespace std;typedef long long ll;typedef pair<int,int> P;#define REDIR ifstream f("input.txt"); cin.rdbuf(f.rdbuf());int n,t;int sums[4];bool ok(int leveys, int a, int b) {int korkeus = a / leveys;if (korkeus == 0) return true;if ((korkeus+1) * (leveys+1) > b) return true;return false;}int main() {//REDIR;cin >> t;while (t--) {int a,b; cin >> a >> b;//-y²+y(b-a-1)-bdouble diskr = (b-a-1)*(b-a-1)-4*(-1)*(double)(-a);if (diskr < 0) cout << "NO\n";else cout << "YES\n";}}/*(x+1)(y+1)=1337x*y+x+y+1=1337x*y=1,x=1/y*/
Test details
Test 1
Verdict: WRONG ANSWER
input |
---|
1000 578049 731905 262997 434601 559974 650052 458543 101143 ... |
correct output |
---|
YES YES YES NO NO ... |
user output |
---|
NO NO NO NO YES ... Truncated |
Test 2
Verdict: WRONG ANSWER
input |
---|
1000 10000 9500 10000 9501 10000 9502 10000 9503 ... |
correct output |
---|
NO NO NO NO NO ... |
user output |
---|
YES YES YES YES YES ... Truncated |
Test 3
Verdict: WRONG ANSWER
input |
---|
961 1 1 1 2 1 3 1 4 ... |
correct output |
---|
NO NO NO YES YES ... |
user output |
---|
NO NO NO YES YES ... Truncated |