# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
790415 | 2023-07-22T15:53:31 Z | alexander707070 | 레지스터 (IOI21_registers) | C++17 | 0 ms | 0 KB |
#include<bits/stdc++.h> #define MAXN 200007 using namespace std; void construct_instructions(int s, int n, int k, int q){ append_move(2,1); append_right(1,1,k); append_left(2,2,n-k); append_right(2,2,n-k); }