Submission #857453

#TimeUsernameProblemLanguageResultExecution timeMemory
857453mychecksedadRobot Contest (IOI23_robot)C++17
6 / 100
97 ms5876 KiB
#include "robot.h" #include <bits/stdc++.h> using namespace std; #define pb push_back #define ll long long int #define MOD (1000000000)+7; #define all(x) x.begin(), x.end() #define en cout << '\n' const int N = 1e3+100; void set_instruction(std::vector<int> S, int Z, char A); void program_pulibot() { set_instruction({0, -2, -2, 0, -2}, 1, 'E'); set_instruction({0, -2, 0, 0, -2}, 1, 'E'); set_instruction({0, 1, -2, 0, -2}, 1, 'E'); set_instruction({0, 1, 0, 0, -2}, 1, 'E'); set_instruction({0, 1, 0, -2, -2}, 1, 'S'); set_instruction({0, 0, 0, -2, 1}, 1, 'S'); set_instruction({0, 0, -2, -2, 1}, 1, 'T'); set_instruction({0, 1, -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...