Submission #1219596

#TimeUsernameProblemLanguageResultExecution timeMemory
1219596trimkusRobot Contest (IOI23_robot)C++20
6 / 100
65 ms5584 KiB
#include "robot.h"

void program_pulibot()
{
    const char goleft = 'E', goright = 'W', godown = 'S', goup = 'N', term = 'T';
    //              .   <  v  >   ^
    set_instruction({0, -2, 0, 0, -2}, 1, goleft);
    set_instruction({0, 1, 0, 0, -2}, 1, goleft);
    set_instruction({0, 1, 0, -2, -2}, 1, godown);
    set_instruction({0, 0, 0, -2, 1}, 1, godown);
    set_instruction({0, 0, -2, -2, 1}, 1, term);
}
#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...