Task: | Kartta |
Sender: | Scintillo |
Submission time: | 2015-01-29 14:49:48 +0200 |
Language: | C++ |
Status: | READY |
Result: | 0 |
group | verdict | score |
---|---|---|
#1 | WRONG ANSWER | 0 |
#2 | WRONG ANSWER | 0 |
#3 | WRONG ANSWER | 0 |
#4 | WRONG ANSWER | 0 |
test | verdict | time | group | |
---|---|---|---|---|
#1 | WRONG ANSWER | 0.10 s | 1 | details |
#2 | WRONG ANSWER | 0.06 s | 2 | details |
#3 | WRONG ANSWER | 0.05 s | 3 | details |
#4 | WRONG ANSWER | 0.06 s | 4 | details |
Code
#include <iostream> using namespace std; int kartta[100][100]; int main() { ios_base::sync_with_stdio(false); cin.tie(0); int h, w, d; cin >> h >> w >> d; if(d > 40) { return 0; } for(int y = 0; y < h; y++) for(int x = 0; x < w; x++) cin >> kartta[x][y]; for(int i = 1; i <= 40; i++) { for(int y = 0; y < h; y++) { for(int x = 0; x < w; x++) { if(kartta[x][y] >= i) { cout << 'V'; } else { cout << 'S'; } } cout << endl; } } for(int i = 1; i <= d; i++) { cout << "1 " << d << endl; } return 0; }
Test details
Test 1
Group: 1
Verdict: WRONG ANSWER
input |
---|
100 100 40 40 11 38 24 5 31 40 10 17 33 1... |
correct output |
---|
(empty) |
user output |
---|
VVVVVVVVVVVVVVVVVVVVVVVVVVVVVV... |
Test 2
Group: 2
Verdict: WRONG ANSWER
input |
---|
100 100 200 200 71 185 86 113 84 170 60 17... |
correct output |
---|
(empty) |
user output |
---|
(empty) |
Test 3
Group: 3
Verdict: WRONG ANSWER
input |
---|
100 100 1000 824 172 828 721 509 73 437 530... |
correct output |
---|
(empty) |
user output |
---|
(empty) |
Test 4
Group: 4
Verdict: WRONG ANSWER
input |
---|
100 100 10000 7110 9439 3392 1630 368 8481 1... |
correct output |
---|
(empty) |
user output |
---|
(empty) |