CSES - Datatähti 2015 loppu - Results
Submission details
Task:Kartta
Sender:PT
Submission time:2015-01-29 16:22:32 +0200
Language:C++
Status:READY
Result:0
Feedback
groupverdictscore
#10
#20
#30
#40
Test results
testverdicttimegroup
#10.13 s1details
#20.12 s2details
#30.14 s3details
#40.29 s4details

Code

#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
#define N 1000001

int n, m, h;
int a[101][101];

int main() {
  cin.sync_with_stdio(0);
  cin >> n >> m >> h;
  for(int y = 1; y <= n; ++y) {
    for(int x = 1; x <= m; ++x) {
      cin >> a[y][x];
      cout << 'V';
    }
    cout << "\n";
  }
  for(int z = 1; z <= 40; ++z) {
      for(int y = 1; y <= n; ++y) {
	for(int x = 1; x <= m; ++x) {
	  if(z <= h && z == a[y][x]) {
	    cout << 'S'; 
	  } else {
	    cout << 'L';
	  }
	}
	cout << "\n";
      }
  }
  for(int i = 0; i < h; ++i) {
    cout << 40 << " ";
    for(int j = 0; j < 40; ++j) {
      cout << j + 1 << " ";
    }
    cout << "\n";
  }
  return 0;
}

Test details

Test 1

Group: 1

Verdict:

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:

input
100 100 200
200 71 185 86 113 84 170 60 17...

correct output
(empty)

user output
VVVVVVVVVVVVVVVVVVVVVVVVVVVVVV...

Test 3

Group: 3

Verdict:

input
100 100 1000
824 172 828 721 509 73 437 530...

correct output
(empty)

user output
VVVVVVVVVVVVVVVVVVVVVVVVVVVVVV...

Test 4

Group: 4

Verdict:

input
100 100 10000
7110 9439 3392 1630 368 8481 1...

correct output
(empty)

user output
VVVVVVVVVVVVVVVVVVVVVVVVVVVVVV...