Submission #1065692

#TimeUsernameProblemLanguageResultExecution timeMemory
1065692alex_2008Robot Contest (IOI23_robot)C++17
6 / 100
114 ms5600 KiB
#include "robot.h" #include <iostream> #include <vector> #include <algorithm> #include <map> using namespace std; //H, W, S, E, N, T //Cur, L, D, R, U, Finish //void set_instruction(vector<int> S, int Z, char A) { // //} void program_pulibot() { //(0, -2, 0, 0, -2) -> (1, 1) for (int u : {0, 1}) { for (int i : { -2, -1, 0, 1, 2 }) { for (int j : { -2, -1, 0, 1, 2 }) { for (int k : { -2, -1, 0, 1, 2 }) { for (int z : { -2, -1, 0, 1, 2 }) { if (j == -2 && k == -2) set_instruction({ u, i, j, k, z }, 1, 'T'); else { if (k == 0) set_instruction({ u, i, j, k, z }, 1, 'E'); else if (j == 0) set_instruction({ u, i, j, k, z }, 1, 'S'); else { if (k == 1) set_instruction({ u, i, j, k, z }, 2, 'E'); else if (j == 1) set_instruction({ u, i, j, k, z }, 2, 'S'); } } } } } } } } //int main() { // //}
#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...