CSES - Datatähti 2022 alku - Results
Submission details
Task:Spiraali
Sender:Matenstein
Submission time:2021-10-04 16:48:39 +0300
Language:C++17
Status:READY
Result:35
Feedback
groupverdictscore
#1ACCEPTED15
#2ACCEPTED20
#30
Test results
testverdicttimegroup
#1ACCEPTED0.01 s1details
#2ACCEPTED0.01 s2details
#30.01 s3details

Compiler report

input/code.cpp: In function 'int main()':
input/code.cpp:32: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 - 1 - n / 2), y = (Y - n / 2);
        double v = 0;

        if (x * x >= y * y)
        {
            v = 4 * x * x - x - y;
            if (x < y)v -= 2 * (x - y);
        }
        else
        {
            v = 4 * y * y - x - y;
            if (x < y)v += 2 * (x - y);
        }
        results.push_back((n * n) - v);
    }

    for (int a = 0; a < results.size(); a++)
    {
        cout << results[a] << "\n";
    }
}

Test details

Test 1

Group: 1

Verdict: ACCEPTED

input
10 100
1 1
1 2
1 3
1 4
...

correct output
1
36
35
34
33
...

user output
1
36
35
34
33
...

Test 2

Group: 2

Verdict: ACCEPTED

input
1000 1000
371 263
915 322
946 880
53 738
...

correct output
773533
312166
206053
200080
593922
...

user output
773533
312166
206053
200080
593922
...

Test 3

Group: 3

Verdict:

input
1000000000 1000
177757853 827347032
409613589 419171337
739269360 256524697
328695530 896842209
...

correct output
571375684522141210
967321186816598569
762879105851175000
370065046779516790
936897883750373771
...

user output
5.71376e+17
9.67321e+17
7.62879e+17
3.70065e+17
9.36898e+17
...