#include "encoder.h"
#include "encoderlib.h"
void encode(int N, int M[])
{
int i, a;
for(i=0; i<N; i++)
{
a=M[i]+(i+1)*1000;
send(a);
}
}
#include<stdio.h>
#include "decoder.h"
#include "decoderlib.h"
#include<algorithm>
using namespace std;
void decode(int N, int L, int X[])
{
int i, H[100], b;
for(i=0; i<L; i++) {
H[i] = X[i];
}
sort(H,H+L);
for(i=0; i<L; i++) {
b=H[i]%1000;
output(b);
}
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
6 ms |
864 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
5 ms |
1752 KB |
Output is correct |
2 |
Correct |
6 ms |
1752 KB |
Output is correct |
3 |
Correct |
6 ms |
1792 KB |
Output is correct |
4 |
Correct |
6 ms |
2104 KB |
Output is correct |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
4 ms |
2104 KB |
Error : Bad encoded integer |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
5 ms |
2104 KB |
Error : Bad encoded integer |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Incorrect |
6 ms |
2104 KB |
Error : Bad encoded integer |
2 |
Incorrect |
5 ms |
2104 KB |
Error : Bad encoded integer |
3 |
Incorrect |
5 ms |
2104 KB |
Error : Bad encoded integer |
4 |
Incorrect |
5 ms |
2104 KB |
Error : Bad encoded integer |
5 |
Incorrect |
6 ms |
2104 KB |
Error : Bad encoded integer |
6 |
Incorrect |
4 ms |
2104 KB |
Error : Bad encoded integer |
7 |
Incorrect |
3 ms |
2104 KB |
Error : Bad encoded integer |