| Task: | Grid |
| Sender: | FredrikEkholm |
| Submission time: | 2017-01-22 19:27:31 +0200 |
| Language: | C++ |
| Status: | READY |
| Result: | 0 |
| group | verdict | score |
|---|---|---|
| #1 | WRONG ANSWER | 0 |
| #2 | WRONG ANSWER | 0 |
| #3 | RUNTIME ERROR | 0 |
| test | verdict | time | group | |
|---|---|---|---|---|
| #1 | ACCEPTED | 0.06 s | 1 | details |
| #2 | ACCEPTED | 0.05 s | 1 | details |
| #3 | ACCEPTED | 0.04 s | 1 | details |
| #4 | ACCEPTED | 0.03 s | 1 | details |
| #5 | ACCEPTED | 0.04 s | 1 | details |
| #6 | ACCEPTED | 0.05 s | 1 | details |
| #7 | ACCEPTED | 0.04 s | 1 | details |
| #8 | ACCEPTED | 0.06 s | 1 | details |
| #9 | WRONG ANSWER | 0.06 s | 1 | details |
| #10 | ACCEPTED | 0.05 s | 2 | details |
| #11 | ACCEPTED | 0.05 s | 2 | details |
| #12 | WRONG ANSWER | 0.14 s | 2 | details |
| #13 | WRONG ANSWER | 0.24 s | 2 | details |
| #14 | WRONG ANSWER | 0.47 s | 2 | details |
| #15 | WRONG ANSWER | 0.66 s | 2 | details |
| #16 | ACCEPTED | 0.04 s | 3 | details |
| #17 | ACCEPTED | 0.04 s | 3 | details |
| #18 | RUNTIME ERROR | 0.19 s | 3 | details |
| #19 | RUNTIME ERROR | 0.19 s | 3 | details |
| #20 | RUNTIME ERROR | 0.22 s | 3 | details |
| #21 | RUNTIME ERROR | 0.17 s | 3 | details |
Code
#include <bits/stdc++.h>
using namespace std;
#define rep(i, a, b) for(int i = a; i < int(b); ++i)
#define trav(a, v) for(auto& a : v)
#define all(x) x.begin(), x.end()
#define sz(x) (int)(x).size()
#define D(x) cerr << #x << " = " << x << endl
typedef long long ll;
typedef pair<int, int> pii;
typedef vector<int> vi;
int main() {
int n;
cin>>n;
int nums[101];
vector<int> rowSums(n);
vector<int> colSums(n);
int grid[101][101];
srand (time(NULL));
rep(x,0,3000){
rep(i,0,101)
nums[i] = 0;
rowSums.resize(0);
colSums.resize(0);
rowSums.resize(n);
colSums.resize(n);
rep(i,0,n){
int rowSum = 0;
rep(j,0,n){
int number = (rand()%n) + 1;
while(nums[number]==n){
number = (rand()%n) + 1;
}
++nums[number];
grid[i][j] = number;
rowSum += number;
colSums[j] += number;
}
rowSums[i] = rowSum;
}
vector<int> allSums = rowSums;
allSums.insert( allSums.end(), colSums.begin(), colSums.end() );
sort( allSums.begin(), allSums.end());
//rep(i,0,allSums.size())
// cout<<allSums[i]<<" ";
//cout<<endl;
if (adjacent_find (allSums.begin(), allSums.end())==allSums.end()){
rep(i,0,n){
rep(j,0,n){
cout << grid[i][j] << " ";
}
cout<<endl;
}
return 0;
}
}
cout<<"QAQ";
}
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: ACCEPTED
| input |
|---|
| 4 |
| correct output |
|---|
| 3 4 3 4 3 1 1 2 4 4 3 2 2 2 1 1 |
| user output |
|---|
| 1 3 4 3 1 1 3 3 2 1 2 2 2 4 4 4 |
Test 4
Group: 1
Verdict: ACCEPTED
| 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 |
|---|
| 4 4 4 4 4 5 5 5 1 3 2 3 2 1 1 1 5 3 3 3 5 1 2 2 2 |
Test 5
Group: 1
Verdict: ACCEPTED
| 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 |
|---|
| 5 5 6 2 6 4 5 6 4 1 6 1 5 5 2 6 3 5 4 2 1 3 4 2 4 4 6 3 2 2 ... |
Test 6
Group: 1
Verdict: ACCEPTED
| 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 |
|---|
| 3 5 5 5 4 3 3 6 4 6 4 5 5 1 2 3 4 2 7 1 3 7 4 4 3 5 5 4 6 1 6 1 3 1 1 ... |
Test 7
Group: 1
Verdict: ACCEPTED
| 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 |
|---|
| 4 2 2 3 1 3 5 8 1 1 8 1 6 3 2 3 8 5 7 8 4 1 8 8 8 1 2 8 5 3 3 5 5 2 5 7 6 4 7 6 ... |
Test 8
Group: 1
Verdict: ACCEPTED
| 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 |
|---|
| 6 8 6 9 2 6 4 2 8 3 7 5 9 4 2 7 8 7 3 7 4 1 2 3 4 1 2 8 2 9 3 7 7 6 4 8 2 5 8 8 5 5 3 5 6 ... |
Test 9
Group: 1
Verdict: WRONG ANSWER
| 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 |
|---|
| QAQ |
Test 10
Group: 2
Verdict: ACCEPTED
| input |
|---|
| 3 |
| correct output |
|---|
| QAQ |
| user output |
|---|
| QAQ |
Test 11
Group: 2
Verdict: ACCEPTED
| input |
|---|
| 4 |
| correct output |
|---|
| 3 4 3 4 3 1 1 2 4 4 3 2 2 2 1 1 |
| user output |
|---|
| 3 4 3 4 1 4 3 4 1 3 1 1 2 2 2 2 |
Test 12
Group: 2
Verdict: WRONG ANSWER
| input |
|---|
| 29 |
| correct output |
|---|
| 2 3 4 5 6 7 8 9 10 11 12 13 14... |
| user output |
|---|
| QAQ |
Test 13
Group: 2
Verdict: WRONG ANSWER
| input |
|---|
| 48 |
| correct output |
|---|
| 2 3 4 5 6 7 8 9 10 11 12 13 14... |
| user output |
|---|
| QAQ |
Test 14
Group: 2
Verdict: WRONG ANSWER
| input |
|---|
| 80 |
| correct output |
|---|
| 2 3 4 5 6 7 8 9 10 11 12 13 14... |
| user output |
|---|
| QAQ |
Test 15
Group: 2
Verdict: WRONG ANSWER
| input |
|---|
| 97 |
| correct output |
|---|
| 2 3 4 5 6 7 8 9 10 11 12 13 14... |
| user output |
|---|
| QAQ |
Test 16
Group: 3
Verdict: ACCEPTED
| input |
|---|
| 3 |
| correct output |
|---|
| QAQ |
| user output |
|---|
| QAQ |
Test 17
Group: 3
Verdict: ACCEPTED
| input |
|---|
| 4 |
| correct output |
|---|
| 3 4 3 4 3 1 1 2 4 4 3 2 2 2 1 1 |
| user output |
|---|
| 1 1 2 2 1 2 3 3 3 1 4 3 2 4 4 4 |
Test 18
Group: 3
Verdict: RUNTIME ERROR
| input |
|---|
| 111 |
| correct output |
|---|
| 2 3 4 5 6 7 8 9 10 11 12 13 14... |
| user output |
|---|
| (empty) |
Test 19
Group: 3
Verdict: RUNTIME ERROR
| input |
|---|
| 506 |
| correct output |
|---|
| 2 3 4 5 6 7 8 9 10 11 12 13 14... |
| user output |
|---|
| (empty) |
Test 20
Group: 3
Verdict: RUNTIME ERROR
| input |
|---|
| 844 |
| correct output |
|---|
| 2 3 4 5 6 7 8 9 10 11 12 13 14... |
| user output |
|---|
| (empty) |
Test 21
Group: 3
Verdict: RUNTIME ERROR
| input |
|---|
| 991 |
| correct output |
|---|
| 2 3 4 5 6 7 8 9 10 11 12 13 14... |
| user output |
|---|
| (empty) |
