제출 #1057943

#제출 시각아이디문제언어결과실행 시간메모리
1057943Ignut로봇 대회 (IOI23_robot)C++17
6 / 100
81 ms5604 KiB
/* Ignut started: 14.08.2024 now: 14.08.2024 ████████████████████████████████████████████████████████████████████ ████████████████████████████████ ████████████████████████████████ ██████████████████████████████ ██████████████████████████████ ██████ ██████████████████ ██████████████████ ██████ ██████ ██████████████ ██████████████ ██████ ██████ ██ ████████████ ████████████ ██ ██████ ██████ ████ ██████████ ██████████ ████ ██████ ██████ ████ ██████████ ██████████ ████ ██████ ██████ ████ ██████████ ██████████ ██████ ██████ ██████ ██████ ██████████ ██████████ ██████ ██████ ██████ ██████ ████████ ████████ ██████ ██████ ██████ ██████ ██████ ██████ ██████ ██████ ██████ ████ ████ ████ ████ ██████ ██████ ██████████ ████ ██████████ ██████ ██████ ██ ██████ ████████ ██████ ██ ██████ ██████ ██████ ████████ ██████ ██████ ██████ ██ ██ ██████ ██████████████████████ ████ ████ ██████████████████████ ████████████████████████ ██ ██ ████████████████████████ ██████████████████████████ ██████████████████████████ ██████████████████████████████ ██████████████████████████████ ████████████████████████████████████████████████████████████████████ */ #include <bits/stdc++.h> using namespace std; using ll = long long; void set_instruction(vector<int> S, int Z, char A); void program_pulibot() { // -> set_instruction({0, -2, 0, 0, -2}, 1, 'E'); set_instruction({0, -2, -2, 0, -2}, 1, 'E'); set_instruction({0, 1, 0, 0, -2}, 1, 'E'); set_instruction({0, 1, -2, 0, -2}, 1, 'E'); // | // v set_instruction({0, 0, 0, -2, -2}, 1, 'S'); set_instruction({0, 0, 0, -2, 1}, 1, 'S'); set_instruction({0, 1, 0, -2, -2}, 1, 'S'); set_instruction({0, 1, 0, -2, 1}, 1, 'S'); set_instruction({0, -2, 0, -2, -2}, 1, 'S'); set_instruction({0, -2, 0, -2, 1}, 1, 'S'); // T set_instruction({0, 0, -2, -2, -2}, 1, 'T'); set_instruction({0, 0, -2, -2, 1}, 1, 'T'); set_instruction({0, 1, -2, -2, -2}, 1, 'T'); set_instruction({0, 1, -2, -2, 1}, 1, 'T'); set_instruction({0, -2, -2, -2, -2}, 1, 'T'); set_instruction({0, -2, -2, -2, 1}, 1, 'T'); }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...