# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
981014 | vjudge1 | 로봇 대회 (IOI23_robot) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <algorithm>
#include <fstream>
#include <vector>
#include <queue>
#include <stack>
#include <iostream>
#include <cmath>
#include <queue>
#include <set>
#include <string>
#include <cstring>
#include <map>
#include <unordered_map>
#include <unordered_set>
#define F first
#define S second
#define PB push_back
using namespace std;
const long long MOD=1e9+7, INF=1e18;
const int INFI=1e9;
typedef long long ll;
typedef pair<int, int> ii;
typedef vector<int> vi;
typedef vector<vi> vvi;
typedef vector<ii> vii;
typedef vector<pair<int, ii>> viii;
typedef vector<vii> vvii;
typedef vector<ll> vll;
typedef vector<vll> vvll;
void program_pulibot(){
set_instruction({0, -2, 0, 0, -2}, 1, 'E');
set_instruction({0, 0, 0, 0, -2}, 1, 'E');
set_instruction({0, -2, -2, 0, 0}, 1, 'E');
set_instruction({0, 0, 0, 0, 0}, 1, 'E');
set_instruction({0, 0, 0, -2, -2}, 1, 'S');
set_instruction({0, 0, 0, -2, 0}, 1, 'S');
set_instruction({0,-2, 0, -2, 0}, 1, 'S');
set_instruction({0, 0, -2, -2, 0}, 1, 'T');
set_instruction({0, -2, -2, -2, 0}, 1, 'T');
set_instruction({0, 0, -2, -2, -2}, 1, 'T');
}