# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
437616 | WnRS | Bit Shift Registers (IOI21_registers) | 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 "registers.h"
#include <bits/stdc++.h>
using namespace std;
void construct_instructions(int ss, int nn, int kk, int qq) {
if(kk==1) {
append_move(1,0);
append_left(1,1,1);
append_and(0,0,1);
return
} else {
append_move(1,0);
append_left(1,1,2);
append_and(0,0,1);
return;
}
}