CSES - Datatähti 2017 loppu - Results
Submission details
Task:Ruudukko
Sender:siirikuoppala
Submission time:2017-01-19 15:38:29 +0200
Language:C++
Status:READY
Result:0
Feedback
groupverdictscore
#10
#20
#30
Test results
testverdicttimegroup
#1ACCEPTED0.03 s1details
#2ACCEPTED0.03 s1details
#30.04 s1details
#40.02 s1details
#50.03 s1details
#60.04 s1details
#70.03 s1details
#80.03 s1details
#90.04 s1details
#10ACCEPTED0.04 s2details
#110.03 s2details
#120.03 s2details
#130.04 s2details
#140.03 s2details
#150.04 s2details
#16ACCEPTED0.04 s3details
#170.04 s3details
#180.04 s3details
#190.08 s3details
#200.11 s3details
#210.13 s3details

Code

#include <iostream>
#include <vector>
#include <algorithm>

using namespace std;
typedef long long ll;
#define N (3030)

vector<int> v;
ll t[N][N], S[N], hyhh[N];

int  main(){
srand(time(0));
	int n; cin >> n;
	if(n<=3) {
		cout << "QAQ\n";
		return 0;
	}
	int s=0;
	for(int i=1; i<=n; ++i) {
		t[i][1]=1;
		t[1][i]= i;
		s+=i;
	}
	--s;
	int c = s/(n-1);
	for(int i=2; i<=n; ++i){
		for(int j=2; j<=n; ++j){
			t[i][j] = i;
		}
	}
	if(s== c*(n-1)){
		swap(t[1][3], t[2][3]);
	}
	for(int i=1; i<=n; ++i){
		for(int j=1; j<=n; ++j){
			cout << t[i][j] << " ";
		}
		cout << "\n";
	}
}

Test details

Test 1

Group: 1

Verdict: ACCEPTED

input
2

correct output
QAQ

user output
QAQ

Test 2

Group: 1

Verdict: ACCEPTED

input
3

correct output
QAQ

user output
QAQ

Test 3

Group: 1

Verdict:

input
4

correct output
3 4 3 4
3 1 1 2
4 4 3 2
2 2 1 1

user output
1 2 2 4 
1 2 3 2 
1 3 3 3 
1 4 4 4 

Test 4

Group: 1

Verdict:

input
5

correct output
2 3 4 1 1 
3 4 2 1 2 
4 2 3 1 3 
4 3 2 1 4 
5 5 5 5 5 

user output
1 2 3 4 5 
1 2 2 2 2 
1 3 3 3 3 
1 4 4 4 4 
1 5 5 5 5 

Test 5

Group: 1

Verdict:

input
6

correct output
2 3 4 5 1 1 
3 4 5 2 1 2 
4 5 2 3 1 3 
5 2 3 4 1 4 
5 4 3 2 1 5 
...

user output
1 2 2 4 5 6 
1 2 3 2 2 2 
1 3 3 3 3 3 
1 4 4 4 4 4 
1 5 5 5 5 5 
...

Test 6

Group: 1

Verdict:

input
7

correct output
2 3 4 5 6 1 1 
3 4 5 6 2 1 2 
4 5 6 2 3 1 3 
5 6 2 3 4 1 4 
6 2 3 4 5 1 5 
...

user output
1 2 3 4 5 6 7 
1 2 2 2 2 2 2 
1 3 3 3 3 3 3 
1 4 4 4 4 4 4 
1 5 5 5 5 5 5 
...

Test 7

Group: 1

Verdict:

input
8

correct output
2 3 4 5 6 7 1 1 
3 4 5 6 7 2 1 2 
4 5 6 7 2 3 1 3 
5 6 7 2 3 4 1 4 
6 7 2 3 4 5 1 5 
...

user output
1 2 2 4 5 6 7 8 
1 2 3 2 2 2 2 2 
1 3 3 3 3 3 3 3 
1 4 4 4 4 4 4 4 
1 5 5 5 5 5 5 5 
...

Test 8

Group: 1

Verdict:

input
9

correct output
2 3 4 5 6 7 8 1 1 
3 4 5 6 7 8 2 1 2 
4 5 6 7 8 2 3 1 3 
5 6 7 8 2 3 4 1 4 
6 7 8 2 3 4 5 1 5 
...

user output
1 2 3 4 5 6 7 8 9 
1 2 2 2 2 2 2 2 2 
1 3 3 3 3 3 3 3 3 
1 4 4 4 4 4 4 4 4 
1 5 5 5 5 5 5 5 5 
...

Test 9

Group: 1

Verdict:

input
10

correct output
2 3 4 5 6 7 8 9 1 1 
3 4 5 6 7 8 9 2 1 2 
4 5 6 7 8 9 2 3 1 3 
5 6 7 8 9 2 3 4 1 4 
6 7 8 9 2 3 4 5 1 5 
...

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

Test 10

Group: 2

Verdict: ACCEPTED

input
3

correct output
QAQ

user output
QAQ

Test 11

Group: 2

Verdict:

input
4

correct output
3 4 3 4
3 1 1 2
4 4 3 2
2 2 1 1

user output
1 2 2 4 
1 2 3 2 
1 3 3 3 
1 4 4 4 

Test 12

Group: 2

Verdict:

input
29

correct output
2 3 4 5 6 7 8 9 10 11 12 13 14...

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

Test 13

Group: 2

Verdict:

input
48

correct output
2 3 4 5 6 7 8 9 10 11 12 13 14...

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

Test 14

Group: 2

Verdict:

input
80

correct output
2 3 4 5 6 7 8 9 10 11 12 13 14...

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

Test 15

Group: 2

Verdict:

input
97

correct output
2 3 4 5 6 7 8 9 10 11 12 13 14...

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

Test 16

Group: 3

Verdict: ACCEPTED

input
3

correct output
QAQ

user output
QAQ

Test 17

Group: 3

Verdict:

input
4

correct output
3 4 3 4
3 1 1 2
4 4 3 2
2 2 1 1

user output
1 2 2 4 
1 2 3 2 
1 3 3 3 
1 4 4 4 

Test 18

Group: 3

Verdict:

input
111

correct output
2 3 4 5 6 7 8 9 10 11 12 13 14...

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

Test 19

Group: 3

Verdict:

input
506

correct output
2 3 4 5 6 7 8 9 10 11 12 13 14...

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

Test 20

Group: 3

Verdict:

input
844

correct output
2 3 4 5 6 7 8 9 10 11 12 13 14...

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

Test 21

Group: 3

Verdict:

input
991

correct output
2 3 4 5 6 7 8 9 10 11 12 13 14...

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