| Task: | Spiraali |
| Sender: | Matenstein |
| Submission time: | 2021-10-04 16:56:02 +0300 |
| Language: | C++ (C++17) |
| Status: | READY |
| Result: | 0 |
| group | verdict | score |
|---|---|---|
| #1 | WRONG ANSWER | 0 |
| #2 | WRONG ANSWER | 0 |
| #3 | WRONG ANSWER | 0 |
| test | verdict | time | group | |
|---|---|---|---|---|
| #1 | WRONG ANSWER | 0.01 s | 1 | details |
| #2 | WRONG ANSWER | 0.01 s | 2 | details |
| #3 | WRONG ANSWER | 0.01 s | 3 | details |
Compiler report
input/code.cpp: In function 'int main()':
input/code.cpp:31:23: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
for (int a = 0; a < results.size(); a++)
~~^~~~~~~~~~~~~~~~Code
#include <iostream>
#include <vector>
using namespace std;
int main()
{
double n, t;
vector<double>results;
cin >> n >> t;
for (int a = 0; a < t; a++)
{
double X, Y;
cin >> Y >> X;
double x = -(X - (double)1 - n / (double)2), y = (Y - n / (double)2);
double v = 0;
if (x * x >= y * y)
{
v = (double)4 * x * x - x - y;
if (x < y)v -= (double)2 * (x - y);
}
else
{
v = (double)4 * y * y - x - y;
if (x < y)v += (double)2 * (x - y);
}
results.push_back((n * n) - v);
}
for (int a = 0; a < results.size(); a++)
{
cout << fixed << results[a] << "\n";
}
}Test details
Test 1
Group: 1
Verdict: WRONG ANSWER
| input |
|---|
| 10 100 1 1 1 2 1 3 1 4 ... |
| correct output |
|---|
| 1 36 35 34 33 ... |
| user output |
|---|
| 1.000000 36.000000 35.000000 34.000000 33.000000 ... Truncated |
Test 2
Group: 2
Verdict: WRONG ANSWER
| input |
|---|
| 1000 1000 371 263 915 322 946 880 53 738 ... |
| correct output |
|---|
| 773533 312166 206053 200080 593922 ... |
| user output |
|---|
| 773533.000000 312166.000000 206053.000000 200080.000000 593922.000000 ... Truncated |
Test 3
Group: 3
Verdict: WRONG ANSWER
| input |
|---|
| 1000000000 1000 177757853 827347032 409613589 419171337 739269360 256524697 328695530 896842209 ... |
| correct output |
|---|
| 571375684522141210 967321186816598569 762879105851175000 370065046779516790 936897883750373771 ... |
| user output |
|---|
| 571375684522141184.000000 967321186816598528.000000 762879105851174912.000000 370065046779 ... Truncated |
