Submission #1244915

#TimeUsernameProblemLanguageResultExecution timeMemory
1244915CyberCowRobot Contest (IOI23_robot)C++20
0 / 100
0 ms324 KiB
#include "robot.h"
#include <bits/stdc++.h>
using namespace std;

void program_pulibot()
{
    for (int i = -2; i <= 1; i++)
    {
        for (int j = -2; j <= 1; j++)
        {
            for (int h = -2; h <= 1; h++)
            {
                for (int h1 = -2; h1 <= 1; h1++)
                {
                    if(h == 0)
                    set_instruction({i, j, h, h1}, 1, 'E');
                    else if(j == 0)
                    set_instruction({i, j, h, h1}, 1, 'S');
                    else
                    set_instruction({i, j, h, h1}, 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...