CSES - Datatähti Open 2017 - Results
Submission details
Task:Witch game
Sender:Wrinx
Submission time:2017-01-21 22:02:39 +0200
Language:C++
Status:READY
Result:0
Feedback
groupverdictscore
#10
#20
#30
Test results
testverdicttimegroup
#10.04 s1details
#20.04 s1details
#30.04 s1details
#40.04 s1details
#50.02 s1details
#60.19 s2details
#70.23 s2details
#80.20 s2details
#90.19 s2details
#100.20 s2details
#110.20 s3details
#120.17 s3details
#130.19 s3details
#140.17 s3details
#150.17 s3details

Code

#include<bits/stdc++.h>

#define F first
#define S second
#define ll long long
#define ull unsigned long long
#define pb push_back
using namespace std;
int n, a[200][200];
int main()
{
    ios_base::sync_with_stdio(false);
    cin.tie(NULL);
    cin >> n;
    if (n <= 4){
        cout << "QAQ" << endl;
        return 0;
    }
    for (int i = 1; i <= n; i++)
        for (int j = 1; j <= n; j++)
        a[i][j] = j;
    for (int i = 1; i <= n; i += 2){
            if (n % 2 == 1 && i + 2 == n) continue;
            int p1 = i / 2 + 1;
            int p2 = n - i / 2 - (i == n);
            int k1 = i;
            int k2 = i + 1;
            if (k2 > n) k2 -= 2;
            swap(a[k1][p1], a[k2][p2]);
        }
    for (int i = 1; i <= n; i++, cout << endl)
        for (int j = 1; j <= n; j++)
        cout << a[i][j] << " ";
}

Test details

Test 1

Group: 1

Verdict:

input
100
2 1 4 3 6 5 8 7 10 9 12 11 14 ...

correct output
156800

user output
100 2 3 4 5 6 7 8 9 10 11 12 1...

Test 2

Group: 1

Verdict:

input
100
2 3 4 5 6 7 8 9 10 11 12 13 14...

correct output
152000

user output
100 2 3 4 5 6 7 8 9 10 11 12 1...

Test 3

Group: 1

Verdict:

input
100
2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ...

correct output
156849

user output
100 2 3 4 5 6 7 8 9 10 11 12 1...

Test 4

Group: 1

Verdict:

input
100
2 3 1 5 6 4 8 9 7 11 12 10 14 ...

correct output
151968

user output
100 2 3 4 5 6 7 8 9 10 11 12 1...

Test 5

Group: 1

Verdict:

input
100
8 98 100 62 42 36 95 70 22 49 ...

correct output
152040

user output
100 2 3 4 5 6 7 8 9 10 11 12 1...

Test 6

Group: 2

Verdict:

input
5000
2 1 4 3 6 5 8 7 10 9 12 11 14 ...

correct output
20808340000

user output
(empty)

Test 7

Group: 2

Verdict:

input
5000
2 3 4 5 6 7 8 9 10 11 12 13 14...

correct output
20795850000

user output
(empty)

Test 8

Group: 2

Verdict:

input
5000
2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ...

correct output
20808342499

user output
(empty)

Test 9

Group: 2

Verdict:

input
5000
2 3 1 5 6 4 8 9 7 11 12 10 14 ...

correct output
20795848337

user output
(empty)

Test 10

Group: 2

Verdict:

input
5000
283 2880 2565 3289 4160 936 39...

correct output
20795852465

user output
(empty)

Test 11

Group: 3

Verdict:

input
100000
2 1 4 3 6 5 8 7 10 9 12 11 14 ...

correct output
166656666800000

user output
(empty)

Test 12

Group: 3

Verdict:

input
100000
2 3 4 5 6 7 8 9 10 11 12 13 14...

correct output
166651667000000

user output
(empty)

Test 13

Group: 3

Verdict:

input
100000
2 1 1 1 1 1 1 1 1 1 1 1 1 1 1 ...

correct output
166656666849999

user output
(empty)

Test 14

Group: 3

Verdict:

input
100000
2 3 1 5 6 4 8 9 7 11 12 10 14 ...

correct output
166651666966668

user output
(empty)

Test 15

Group: 3

Verdict:

input
100000
186 62491 95379 37431 88427 93...

correct output
166651667250100

user output
(empty)