답안 #603864

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
603864 2022-07-24T12:53:07 Z MrDeboo Flight to the Ford (BOI22_communication) C++17
0 / 100
94 ms 1700 KB
#include"communication.h"
#include <bits/stdc++.h>
using namespace std;
void encode(int n, int x) {
    srand(654634);
    int f=rand()%100+100;
    while(f--&&send(0)!=1){
        ;
    }
    send((x==1));
}


std::pair<int, int> decode(int n) {
    srand(654634);
    int f=rand()%100+100;
    while(f--&&receive()!=1){
        ;
    }
    if(receive())return {1,1};
    return {3, 2};
}
# 결과 실행 시간 메모리 Grader output
1 Correct 9 ms 1700 KB Output is correct
2 Incorrect 94 ms 236 KB Not correct
3 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 25 ms 200 KB Not correct
2 Halted 0 ms 0 KB -