| # | Time | Username | Problem | Language | Result | Execution time | Memory | 
|---|---|---|---|---|---|---|---|
| 1049321 | AIF_is_carving | Robot Contest (IOI23_robot) | C++17 | 0 ms | 0 KiB | 
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include<bits/stdc++.h>
using namespace std;
 
typedef long long ll;
void program_pulibot(){
    for(int i = 0; i<=118; i++){
        vector<int> s(5, 0);
        int x = i;
        s[1] = -(x%3); x/=3;
        s[2] = -(x%3); x/=3;
        s[3] = -(x%3); x/=3;
        s[4] = -(x%3); x/=3;
        if(s[3] == 0) set_instruction(s, 1, 'E');
        else if(s[2]!=0 && s[4] == 0) set_instruction(s, 1, 'N');
        else if(s[2]==0 && s[4] != 0) set_instruction(s, 1, 'S');
        else set_instruction(s, 1, 'T');
    }
    
    return;
}
