# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
14825 | minsu | 앵무새 (IOI11_parrots) | C++14 | 7 ms | 2280 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "encoder.h"
#include "encoderlib.h"
#include <bits/stdc++.h>
using namespace std;
void encode(int N, int M[])
{
for(int i=0; i<N; i++){
int a = M[i] / 100;
int b = M[i] / 10 % 10;
int c = M[i] % 10;
while( a!=0 || b!=0 || c!=0 ){
int s = i<<3;
if(a) s |= 4, a--;
if(b) s |= 2, b--;
if(c) s |= 1, c--;
send( s );
}
}
send( (N-1)<<3 );
}
#include "decoder.h"
#include "decoderlib.h"
#include <bits/stdc++.h>
using namespace std;
void decode(int N, int L, int X[])
{
int i, b, n=0;
vector<int> m(111);
for(i=0; i<L; i++) {
m[ X[i]>>3 ] += X[i]%8;
n = max( n, X[i]>>3 );
}
for(i=0; i<=n; i++)
output( m[i] );
}
컴파일 시 표준 에러 (stderr) 메시지
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |