Task: | Ruudukko |
Sender: | |
Submission time: | 2015-09-12 01:05:08 +0300 |
Language: | C++ |
Status: | READY |
Result: | 12 |
group | verdict | score |
---|---|---|
#1 | ACCEPTED | 12 |
#2 | WRONG ANSWER | 0 |
#3 | WRONG ANSWER | 0 |
test | verdict | time | group | |
---|---|---|---|---|
#1 | ACCEPTED | 0.05 s | 1 | details |
#2 | ACCEPTED | 0.05 s | 1 | details |
#3 | ACCEPTED | 0.05 s | 1 | details |
#4 | ACCEPTED | 0.06 s | 1 | details |
#5 | ACCEPTED | 0.05 s | 1 | details |
#6 | WRONG ANSWER | 0.05 s | 2 | details |
#7 | WRONG ANSWER | 0.05 s | 2 | details |
#8 | WRONG ANSWER | 0.05 s | 2 | details |
#9 | WRONG ANSWER | 0.05 s | 2 | details |
#10 | WRONG ANSWER | 0.05 s | 2 | details |
#11 | WRONG ANSWER | 0.05 s | 3 | details |
#12 | WRONG ANSWER | 0.05 s | 3 | details |
#13 | WRONG ANSWER | 0.05 s | 3 | details |
#14 | WRONG ANSWER | 0.06 s | 3 | details |
#15 | WRONG ANSWER | 0.05 s | 3 | details |
Code
#include <iostream> #include <vector> #include <string> #include <set> #include <utility> #include <algorithm> using namespace std; typedef long long LL; int main(){ int k; cin >> k; for(int row = 0; row < 20; row++){ cout << "."; if(row % 2 == 0 && row < 2*k){ for(int i = 0; i < 18; i++){ cout << "."; } } else{ for(int i = 0; i < 18; i++){ cout << "#"; } } cout << "." << endl; } }
Test details
Test 1
Group: 1
Verdict: ACCEPTED
input |
---|
2 |
correct output |
---|
.................... .################### .################### .################### .################### ... |
user output |
---|
.................... .##################. .................... .##################. .##################. ... |
Test 2
Group: 1
Verdict: ACCEPTED
input |
---|
5 |
correct output |
---|
.................... .################..# .#################.. .#################.. .##################. ... |
user output |
---|
.................... .##################. .................... .##################. .................... ... |
Test 3
Group: 1
Verdict: ACCEPTED
input |
---|
7 |
correct output |
---|
.................... .################..# .#################.. .#################.. .##################. ... |
user output |
---|
.................... .##################. .................... .##################. .................... ... |
Test 4
Group: 1
Verdict: ACCEPTED
input |
---|
8 |
correct output |
---|
.................... .################### .################### .################### .################### ... |
user output |
---|
.................... .##################. .................... .##################. .................... ... |
Test 5
Group: 1
Verdict: ACCEPTED
input |
---|
9 |
correct output |
---|
.................... .################### .################### .################### .################### ... |
user output |
---|
.................... .##################. .................... .##################. .................... ... |
Test 6
Group: 2
Verdict: WRONG ANSWER
input |
---|
19 |
correct output |
---|
.................... .############..##### .#############..#### .#############...### .##############...## ... |
user output |
---|
.................... .##################. .................... .##################. .................... ... |
Test 7
Group: 2
Verdict: WRONG ANSWER
input |
---|
32 |
correct output |
---|
.................... .################### .################### .################### .################### ... |
user output |
---|
.................... .##################. .................... .##################. .................... ... |
Test 8
Group: 2
Verdict: WRONG ANSWER
input |
---|
44 |
correct output |
---|
.................... .################..# .#################.. .#################.. .##################. ... |
user output |
---|
.................... .##################. .................... .##################. .................... ... |
Test 9
Group: 2
Verdict: WRONG ANSWER
input |
---|
76 |
correct output |
---|
.................... .########..######..# .#########..######.. .#########...#####.. .##########...#####. ... |
user output |
---|
.................... .##################. .................... .##################. .................... ... |
Test 10
Group: 2
Verdict: WRONG ANSWER
input |
---|
93 |
correct output |
---|
.................... .########..##..##..# .#########..##..##.. .#########...#...#.. .##########...#...#. ... |
user output |
---|
.................... .##################. .................... .##################. .................... ... |
Test 11
Group: 3
Verdict: WRONG ANSWER
input |
---|
141 |
correct output |
---|
.................... .################..# .#################.. .#################.. .##################. ... |
user output |
---|
.................... .##################. .................... .##################. .................... ... |
Test 12
Group: 3
Verdict: WRONG ANSWER
input |
---|
422 |
correct output |
---|
.................... .####..##########..# .#####..##########.. .#####...#########.. .######...#########. ... |
user output |
---|
.................... .##################. .................... .##################. .................... ... |
Test 13
Group: 3
Verdict: WRONG ANSWER
input |
---|
671 |
correct output |
---|
.................... .#.##########..##..# ....##########..##.. .#...#########...#.. .##...#########...#. ... |
user output |
---|
.................... .##################. .................... .##################. .................... ... |
Test 14
Group: 3
Verdict: WRONG ANSWER
input |
---|
895 |
correct output |
---|
.................... .#.##..##..##..##..# ....##..##..##..##.. .#...#...#...#...#.. .##...#...#...#...#. ... |
user output |
---|
.................... .##################. .................... .##################. .................... ... |
Test 15
Group: 3
Verdict: WRONG ANSWER
input |
---|
956 |
correct output |
---|
.................... .#.##..######..##..# ....##..######..##.. .#...#...#####...#.. .##...#...#####...#. ... |
user output |
---|
.................... .##################. .................... .##################. .................... ... |