#include "encoder.h"
#include "encoderlib.h"
#include<bits/stdc++.h>
#define MAX 10000
using namespace std;
void encode(int N, int M[])
{
for( int i = 0; i < N; i ++ )
for( int j = 0; j < 8; j ++ )
{
// Manda el num
int tmp = 0;
if( ( M[i] & ( 1 << j ) ) != 0 )
tmp = 1;
tmp <<= 3;
tmp += j;
tmp <<= 4;
tmp += i;
send( tmp );
}
}
#include "decoder.h"
#include "decoderlib.h"
#include<bits/stdc++.h>
#define MAX 10000
using namespace std;
int ans[MAX];
void decode(int N, int L, int X[])
{
for( int i = 0; i < L; i ++ )
{
int pos = ( X[i] & 15 );
X[i] >>= 4;
int jj = ( X[i] & 7 );
X[i] >>= 3;
if( ( X[i] & 1 ) != 0 )
ans[pos] += ( 1 << jj );
}
for( int i = 0; i < N; i ++ )
output( ans[i] );
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
5 ms |
792 KB |
Error : Output is wrong |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
5 ms |
1968 KB |
Error : Output is wrong |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
5 ms |
2128 KB |
Error : Output is wrong |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
5 ms |
2128 KB |
Error : Output is wrong |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
5 ms |
2128 KB |
Error : Output is wrong |
2 |
Incorrect |
4 ms |
2128 KB |
Error : Bad encoded integer |
3 |
Incorrect |
5 ms |
2128 KB |
Error : Bad encoded integer |
4 |
Incorrect |
4 ms |
2128 KB |
Error : Bad encoded integer |
5 |
Incorrect |
4 ms |
2128 KB |
Error : Bad encoded integer |
6 |
Incorrect |
4 ms |
2128 KB |
Error : Bad encoded integer |
7 |
Incorrect |
4 ms |
2128 KB |
Error : Bad encoded integer |