Submission #1057973

#TimeUsernameProblemLanguageResultExecution timeMemory
1057973IgnutRobot Contest (IOI23_robot)C++17
10 / 100
87 ms5792 KiB
/* Ignut
started: 14.08.2024
now: 14.08.2024
████████████████████████████████████████████████████████████████████
████████████████████████████████    ████████████████████████████████
██████████████████████████████        ██████████████████████████████
██████      ██████████████████        ██████████████████      ██████
██████          ██████████████        ██████████████          ██████
██████      ██    ████████████        ████████████    ██      ██████
██████      ████    ██████████        ██████████    ████      ██████
██████      ████      ██████████    ██████████      ████      ██████
██████      ████      ██████████    ██████████    ██████      ██████
██████      ██████    ██████████    ██████████    ██████      ██████
██████      ██████    ████████        ████████    ██████      ██████
██████      ██████      ██████        ██████      ██████      ██████
██████      ████        ████            ████        ████      ██████
██████            ██████████    ████    ██████████            ██████
██████      ██      ██████    ████████    ██████      ██      ██████
██████      ██████            ████████            ██████      ██████
██████                    ██            ██                    ██████
██████████████████████      ████    ████      ██████████████████████
████████████████████████      ██    ██      ████████████████████████
██████████████████████████                ██████████████████████████
██████████████████████████████        ██████████████████████████████
████████████████████████████████████████████████████████████████████
*/
 
#include <bits/stdc++.h>
 
using namespace std;
using ll = long long;

void set_instruction(vector<int> S, int Z, char A);

void program_pulibot() {
    // -> 
    for (int i2 = -2; i2 <= 1; i2 ++) {
        for (int i3 = -2; i3 <= 1; i3 ++) {
            for (int i5 = -2; i5 <= 1; i5 ++) {
                set_instruction({0, i2, i3, 0, i5}, 1, 'E');
            }
        }
    }
    // |
    // v
    for (int i2 = -2; i2 <= 1; i2 += 3) {
        for (int i4 = -2; i4 <= -1; i4 ++) {
            set_instruction({0, i2, 0, i4, -2}, 1, 'S');
        }
    }
    // ^
    // |
    for (int i2 = -2; i2 <= 1; i2 += 3) {
        set_instruction({0, i2, -2, -1, 0}, 1, 'N');
    }
    // T
    for (int i2 = -2; i2 <= 1; i2 ++) {
        for (int i5 = -2; i5 <= 1; i5 ++) {
            set_instruction({0, i2, -2, -2, i5}, 1, 'T');
        }
    }
}

// int main() {
//     ios_base::sync_with_stdio(false), cin.tie(0), cout.tie(0);

//     #ifndef ONLINE_JUDGE
//         freopen("input123.txt", "r", stdin);
//         freopen("output123.txt", "w", stdout);
//     #endif

//     return 0;
// }

/*
*/
#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...