# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
481302 | unknownnnn | 앵무새 (IOI11_parrots) | C++14 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
SUBMISSION #481299
# Submission timeUTC+2 Handle Problem Language Result Execution time Memory
481299 2021-10-20 12:21:33 unknownnnn Parrots (IOI11_parrots) C++14
Compilation error
0 ms 0 KB
encoder
decoder
#include "encoder.h"
#include "encoderlib.h"
#include <iostream>
using namespace std;
void encode(int n,int m[])
{
int j=0;
for(int i=0 ; i<n ; i++)
{
m[i]=(m[i]+j);
j+=2;
}
for(int i=0 ; i<n ; i++)
{
send(m[i]);
}
}
SUBMISSION #481299
# Submission timeUTC+2 Handle Problem Language Result Execution time Memory
481299 2021-10-20 12:21:33 unknownnnn Parrots (IOI11_parrots) C++14
Compilation error
0 ms 0 KB
encoder
decoder
#include "encoder.h"
#include "encoderlib.h"
#include <iostream>
using namespace std;
int novaniza[8];
void decode(int n, int l, int m[])
{
int niza[n];
for(int i=0 ; i<l ; i++)
{
int pozicija=m[i]/2;
novaniza[pozicija]=m[i]%2;
}
for(int i=0 ; i<n ; i++)
{
output(novaniza[i]);
}
}