Submission #60034

# Submission time Handle Problem Language Result Execution time Memory
60034 2018-07-23T13:32:10 Z theknife2001 Parrots (IOI11_parrots) C++17
17 / 100
7 ms 2176 KB
#include "encoder.h"
#include "encoderlib.h"
#include <bits/stdc++.h>

using namespace std;

void encode(int N, int M[])
{
    int s=0;
    int a,b,c;
    for(int i=0;i<N;i++)
    {
        a=M[i]%10;
        M[i]/=10;
        b=M[i]%10;
        M[i]/=10;
        c=M[i]%10;
        M[i]/=10;
        send(s+c);
        send(s+b);
        send(s+a);
        s+=10;
        if(s>249)
            assert(0);
    }
}
#include "decoder.h"
#include "decoderlib.h"
#include <bits/stdc++.h>

using namespace std;

void decode(int N, int L, int X[])
{
    sort(X,X+L);
    int x=0;
    for(int i=0;i<L;i+=3)
    {
        x=0;
        for(int j=i;j<i+3;j++)
        {
            x*=10;
            x+=X[j]%10;
        }
        output(x);
    }
}
# Verdict Execution time Memory Grader output
1 Correct 6 ms 932 KB Output is correct
# Verdict Execution time Memory Grader output
1 Incorrect 7 ms 1752 KB Error : Output is wrong
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 7 ms 2152 KB Error : Output is wrong
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 5 ms 2152 KB Error : Output is wrong
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 6 ms 2176 KB Error : Output is wrong
2 Runtime error 3 ms 1088 KB Execution killed with signal 11 (could be triggered by violating memory limits)
3 Runtime error 2 ms 1088 KB Execution killed with signal 11 (could be triggered by violating memory limits)
4 Runtime error 3 ms 1088 KB Execution killed with signal 11 (could be triggered by violating memory limits)
5 Runtime error 4 ms 1088 KB Execution killed with signal 11 (could be triggered by violating memory limits)
6 Runtime error 4 ms 1088 KB Execution killed with signal 11 (could be triggered by violating memory limits)
7 Runtime error 0 ms 1088 KB Execution killed with signal 11 (could be triggered by violating memory limits)