# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
689755 | 2023-01-29T10:01:50 Z | coding_snorlax | Bit Shift Registers (IOI21_registers) | C++17 | 0 ms | 0 KB |
void construct_instructions(int s,int n,int k,int q){ while(n>1){ append_right(1,0,(n/2)*k); append_and(0,0,1); n=n-n/2; } return; }