# | 제출 시각UTC-0 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
17127 | murat | 앵무새 (IOI11_parrots) | C++98 | 12 ms | 2352 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "encoder.h"
#include "encoderlib.h"
#include<bits/stdc++.h>
using namespace std;
void encode(int N, int M[]) {
int c = 0, t = 0;
vector< int > v[5];
int P[500] = {0};
int cc[500] = {0};
for(int i=0; i<N; i++) {
int tt = M[i];
for(int j = 0; j < 8; j+=2) {
P[c] = (tt) & 3;
cc[P[c]]++;
c++;
tt >>= 2;
}
}
int mx = max(max(cc[0], cc[1]), max(cc[2], cc[3]));
if(mx == cc[0]) { t = 0; send(0); send(0); send(0); send(0); }
else/* if(mx == cc[1]) */{ t = 1; send(1); send(1); send(1); send(1); }
/*else if(mx == cc[2]) { t = 2; send(2); send(2); send(2); send(2); }
else if(mx == cc[3]) { t = 3; send(3); send(3); send(3); send(3); }
*/
# | 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... |