| # | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
|---|---|---|---|---|---|---|---|
| 1045849 | Unforgettablepl | 레지스터 (IOI21_registers) | C++17 | 0 ms | 348 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "registers.h"
void construct_instructions(int s, int n, int k, int q) {
if(k==1){
append_right(1,0,1);
append_and(0,0,1);
return;
}
append_right(1,0,2);
append_and(2,0,1);
// Edge Case 1
std::vector<bool> case1(2000);
case1[1]=true;
append_store(3,case1);
append_xor(4,0,3);
append_right(5,4,1);
append_and(4,4,5);
append_right(5,5,2);
append_and(4,4,5);
append_or(2,4,2);
// Edge Case 2
std::vector<bool> case2(2000);
case2[3]=true;
append_store(3,case2);
append_xor(4,0,3);
append_right(4,4,1);
append_right(5,4,1);
append_and(4,4,5);
append_right(5,5,1);
append_and(4,4,5);
append_or(2,4,2);
// finish
append_move(0,2);
return;
}
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
| # | Verdict | Execution time | Memory | Grader output |
|---|---|---|---|---|
| Fetching results... | ||||
