Task: | Ruudukko |
Sender: | UpHereNorth |
Submission time: | 2023-01-21 15:17:53 +0200 |
Language: | C++ (C++17) |
Status: | READY |
Result: | 0 |
group | verdict | score |
---|---|---|
#1 | WRONG ANSWER | 0 |
#2 | WRONG ANSWER | 0 |
#3 | WRONG ANSWER | 0 |
test | verdict | time | group | |
---|---|---|---|---|
#1 | ACCEPTED | 0.00 s | 1, 2, 3 | details |
#2 | ACCEPTED | 0.01 s | 1, 2, 3 | details |
#3 | WRONG ANSWER | 0.00 s | 1, 2, 3 | details |
#4 | WRONG ANSWER | 0.01 s | 1, 2, 3 | details |
#5 | ACCEPTED | 0.00 s | 1, 2, 3 | details |
#6 | ACCEPTED | 0.00 s | 1, 2, 3 | details |
#7 | ACCEPTED | 0.00 s | 1, 2, 3 | details |
#8 | ACCEPTED | 0.00 s | 1, 2, 3 | details |
#9 | ACCEPTED | 0.00 s | 1, 2, 3 | details |
#10 | ACCEPTED | 0.00 s | 1, 2, 3 | details |
#11 | ACCEPTED | 0.00 s | 1, 2, 3 | details |
#12 | ACCEPTED | 0.00 s | 1, 2, 3 | details |
#13 | ACCEPTED | 0.00 s | 1, 2, 3 | details |
#14 | WRONG ANSWER | 0.00 s | 1, 2, 3 | details |
#15 | ACCEPTED | 0.00 s | 1, 2, 3 | details |
#16 | ACCEPTED | 0.00 s | 1, 2, 3 | details |
#17 | WRONG ANSWER | 0.00 s | 2, 3 | details |
#18 | WRONG ANSWER | 0.00 s | 2, 3 | details |
#19 | WRONG ANSWER | 0.00 s | 2, 3 | details |
#20 | WRONG ANSWER | 0.00 s | 2, 3 | details |
#21 | WRONG ANSWER | 0.00 s | 2, 3 | details |
#22 | WRONG ANSWER | 0.00 s | 2, 3 | details |
#23 | WRONG ANSWER | 0.00 s | 2, 3 | details |
#24 | WRONG ANSWER | 0.00 s | 2, 3 | details |
#25 | WRONG ANSWER | 0.00 s | 3 | details |
#26 | WRONG ANSWER | 0.00 s | 3 | details |
#27 | WRONG ANSWER | 0.00 s | 3 | details |
#28 | WRONG ANSWER | 0.00 s | 3 | details |
#29 | WRONG ANSWER | 0.00 s | 3 | details |
#30 | WRONG ANSWER | 0.00 s | 3 | details |
#31 | WRONG ANSWER | 0.00 s | 3 | details |
#32 | WRONG ANSWER | 0.00 s | 3 | details |
#33 | WRONG ANSWER | 0.00 s | 3 | details |
#34 | WRONG ANSWER | 0.00 s | 3 | details |
#35 | WRONG ANSWER | 0.00 s | 3 | details |
#36 | WRONG ANSWER | 0.00 s | 3 | details |
Code
#include <bits/stdc++.h> using namespace std; using ll = long long; /* 1 1 . 1 2 .. 2 2 .. #. 2 3 .#. ... 2 4 .#.# .... 3 4 .#.# .... .#.# 4 4 .#.# .... #.#. ...# 3 4 .#.. ..#. #... 4 3 ..# #.. ..# #.. 4 4 ..#. #... .#.# .... #.# .#. ... ... #.# .#. -> #.#.#. ...... #.#.#. */ void print_ans(vector<vector<char>> ans){ for(auto row : ans){ for(char c : row){ cout << (c ? "#" : "."); } cout << "\n"; } } int main(){ int n, m; cin >> n >> m; if(max(n,m) > 4){ cout << "noh...\n"; return 0; } vector<vector<char>> ans(n, vector<char> (m)); if(n != 4){ for(int i = 0; i < n; ++i){ for(int j = 0; j < m; ++j){ if(i%2 == 0 && j%2)ans[i][j]=1; } } } if(n==4 && m==3){ for(int i = 0; i < n; ++i){ for(int j = 0; j < m; ++j){ if(i%2==0){ if(j==2)ans[i][j]=1; } else{ if(j==0)ans[i][j]=1; } } } } if(n==4 && m == 4){ ans[0][2] = ans[1][0] = ans[2][1] = ans[2][3] = 1; } print_ans(ans); }
Test details
Test 1
Group: 1, 2, 3
Verdict: ACCEPTED
input |
---|
1 1 |
correct output |
---|
. |
user output |
---|
. |
Test 2
Group: 1, 2, 3
Verdict: ACCEPTED
input |
---|
1 2 |
correct output |
---|
.. |
user output |
---|
.# |
Test 3
Group: 1, 2, 3
Verdict: WRONG ANSWER
input |
---|
1 3 |
correct output |
---|
... |
user output |
---|
.#. |
Test 4
Group: 1, 2, 3
Verdict: WRONG ANSWER
input |
---|
1 4 |
correct output |
---|
.... |
user output |
---|
.#.# |
Test 5
Group: 1, 2, 3
Verdict: ACCEPTED
input |
---|
2 1 |
correct output |
---|
. . |
user output |
---|
. . |
Test 6
Group: 1, 2, 3
Verdict: ACCEPTED
input |
---|
2 2 |
correct output |
---|
.# .. |
user output |
---|
.# .. |
Test 7
Group: 1, 2, 3
Verdict: ACCEPTED
input |
---|
2 3 |
correct output |
---|
.#. ... |
user output |
---|
.#. ... |
Test 8
Group: 1, 2, 3
Verdict: ACCEPTED
input |
---|
2 4 |
correct output |
---|
.#.# .... |
user output |
---|
.#.# .... |
Test 9
Group: 1, 2, 3
Verdict: ACCEPTED
input |
---|
3 1 |
correct output |
---|
. . . |
user output |
---|
. . . |
Test 10
Group: 1, 2, 3
Verdict: ACCEPTED
input |
---|
3 2 |
correct output |
---|
.# .. .# |
user output |
---|
.# .. .# |
Test 11
Group: 1, 2, 3
Verdict: ACCEPTED
input |
---|
3 3 |
correct output |
---|
.#. ... .#. |
user output |
---|
.#. ... .#. |
Test 12
Group: 1, 2, 3
Verdict: ACCEPTED
input |
---|
3 4 |
correct output |
---|
.#.# .... .#.# |
user output |
---|
.#.# .... .#.# |
Test 13
Group: 1, 2, 3
Verdict: ACCEPTED
input |
---|
4 1 |
correct output |
---|
. . . . |
user output |
---|
. . . . |
Test 14
Group: 1, 2, 3
Verdict: WRONG ANSWER
input |
---|
4 2 |
correct output |
---|
.. .# .. #. |
user output |
---|
.. .. .. .. |
Test 15
Group: 1, 2, 3
Verdict: ACCEPTED
input |
---|
4 3 |
correct output |
---|
... .#. ..# #.. |
user output |
---|
..# #.. ..# #.. |
Test 16
Group: 1, 2, 3
Verdict: ACCEPTED
input |
---|
4 4 |
correct output |
---|
.... .#.# ..#. #... |
user output |
---|
..#. #... .#.# .... |
Test 17
Group: 2, 3
Verdict: WRONG ANSWER
input |
---|
999 1 |
correct output |
---|
. . . . . ... |
user output |
---|
noh... |
Test 18
Group: 2, 3
Verdict: WRONG ANSWER
input |
---|
999 2 |
correct output |
---|
.# .. .# .. #. ... |
user output |
---|
noh... |
Test 19
Group: 2, 3
Verdict: WRONG ANSWER
input |
---|
999 3 |
correct output |
---|
.#. ... .#. ..# #.. ... |
user output |
---|
noh... |
Test 20
Group: 2, 3
Verdict: WRONG ANSWER
input |
---|
999 4 |
correct output |
---|
.#.# .... .#.# ..#. #... ... |
user output |
---|
noh... |
Test 21
Group: 2, 3
Verdict: WRONG ANSWER
input |
---|
1000 1 |
correct output |
---|
. . . . . ... |
user output |
---|
noh... |
Test 22
Group: 2, 3
Verdict: WRONG ANSWER
input |
---|
1000 2 |
correct output |
---|
.. .# .. #. .. ... |
user output |
---|
noh... |
Test 23
Group: 2, 3
Verdict: WRONG ANSWER
input |
---|
1000 3 |
correct output |
---|
... .#. ..# #.. ..# ... |
user output |
---|
noh... |
Test 24
Group: 2, 3
Verdict: WRONG ANSWER
input |
---|
1000 4 |
correct output |
---|
.... .#.# ..#. #... ..#. ... |
user output |
---|
noh... |
Test 25
Group: 3
Verdict: WRONG ANSWER
input |
---|
999 995 |
correct output |
---|
.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#... |
user output |
---|
noh... |
Test 26
Group: 3
Verdict: WRONG ANSWER
input |
---|
999 996 |
correct output |
---|
.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#... |
user output |
---|
noh... |
Test 27
Group: 3
Verdict: WRONG ANSWER
input |
---|
999 997 |
correct output |
---|
.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#... |
user output |
---|
noh... |
Test 28
Group: 3
Verdict: WRONG ANSWER
input |
---|
999 998 |
correct output |
---|
.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#... |
user output |
---|
noh... |
Test 29
Group: 3
Verdict: WRONG ANSWER
input |
---|
999 999 |
correct output |
---|
.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#... |
user output |
---|
noh... |
Test 30
Group: 3
Verdict: WRONG ANSWER
input |
---|
999 1000 |
correct output |
---|
.#.#.#.#.#.#.#.#.#.#.#.#.#.#.#... |
user output |
---|
noh... |
Test 31
Group: 3
Verdict: WRONG ANSWER
input |
---|
1000 995 |
correct output |
---|
................................. |
user output |
---|
noh... |
Test 32
Group: 3
Verdict: WRONG ANSWER
input |
---|
1000 996 |
correct output |
---|
................................. |
user output |
---|
noh... |
Test 33
Group: 3
Verdict: WRONG ANSWER
input |
---|
1000 997 |
correct output |
---|
................................. |
user output |
---|
noh... |
Test 34
Group: 3
Verdict: WRONG ANSWER
input |
---|
1000 998 |
correct output |
---|
................................. |
user output |
---|
noh... |
Test 35
Group: 3
Verdict: WRONG ANSWER
input |
---|
1000 999 |
correct output |
---|
................................. |
user output |
---|
noh... |
Test 36
Group: 3
Verdict: WRONG ANSWER
input |
---|
1000 1000 |
correct output |
---|
................................. |
user output |
---|
noh... |