| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 1231326 | VMaksimoski008 | 메시지 (IOI24_message) | C++20 | 344 ms | 872 KiB |
#include "message.h"
#include <bits/stdc++.h>
using namespace std;
void send_message(vector<bool> M, vector<bool> C) {
for(bool b : M) send_packet(vector<bool>(31, b));
}
vector<bool> receive_message(vector<vector<bool>> R) {
vector<bool> ans;
for(auto vec : R) {
int v = 0;
for(bool b : vec) v += (b ? 1 : -1);
ans.push_back((v > 0));
}
return ans;
}| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
