CSES - Datatähti 2020 alku - Results
Submission details
Task:Ruudukko
Sender:Microwave Abuser
Submission time:2019-09-30 21:39:30 +0300
Language:C++11
Status:READY
Result:100
Feedback
groupverdictscore
#1ACCEPTED100
Test results
testverdicttime
#1ACCEPTED0.03 sdetails
#2ACCEPTED0.03 sdetails
#3ACCEPTED0.03 sdetails
#4ACCEPTED0.03 sdetails
#5ACCEPTED0.03 sdetails
#6ACCEPTED0.03 sdetails

Code

//g++ -std=c++11 -O2 -Wall microwave.cpp -o microwave
#include <bits/stdc++.h>
using namespace std;
int main()
{
	ios::sync_with_stdio(0);
	cin.tie(0);
	//COMMENCE CODE
	int gayarray[101][101];
	for(int i = 1; i <= 100; i++)
	{
		gayarray[1][i] = i;
		gayarray[i][1] = i;
	}
	for(int x = 2; x <= 100; x++)
	{
		for(int y = 2; y <= 100; y++)
		{
			int number = 1;
			bool success = false;
			while(!success)
			{
				success = true;
				for(int cx = 1; cx < x;)
				{
					if(gayarray[cx][y] == number)
					{
						number++;
						cx = 1;
						success = false;
					}
					else
					{
						cx++;
					}
				}
				for(int cy = 1; cy < y;)
				{
					if(gayarray[x][cy] == number)
					{
						number++;
						cy = 1;
						success = false;
					}
					else
					{
						cy++;
					}
				}
			}
			
			gayarray[x][y] = number;
		}
	}

	int n;
	cin >> n;

	for(int y = 1; y <= n; y++)
	{
		for(int x = 1; x <= n; x++)
		{
			cout << gayarray[x][y] << " ";
		}
		cout << "\n";
	}
}

Test details

Test 1

Verdict: ACCEPTED

input
1

correct output

user output

Test 2

Verdict: ACCEPTED

input
2

correct output
1 2 
2 1 

user output
1 2 
2 1 

Test 3

Verdict: ACCEPTED

input
5

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

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

Test 4

Verdict: ACCEPTED

input
42

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

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

Test 5

Verdict: ACCEPTED

input
99

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

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

Test 6

Verdict: ACCEPTED

input
100

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

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