답안 #437021

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
437021 2021-06-25T16:06:22 Z model_code 레지스터 (IOI21_registers) C++17
21 / 100
2 ms 204 KB
#include <bits/stdc++.h>
#include "registers.h"
using namespace std;

const int b = 2000;
void construct_instructions(int s, int n, int k, int q) {
    vector<bool> v(b,0);
    v[0] = 1;
    append_store(3, v);
    vector<bool> all_ones(b,1);
    append_store(4, all_ones);
    vector<bool> last_k(b,0);
    for(int i=0; i<k; i++) {
        last_k[i] = 1;
    }
    append_store(5, last_k);

    append_right(1, 0, k);


    append_not(8, 1);
    append_and(8, 8, 5);
    append_and(0, 0, 5);
    append_add(2, 0, 8);
    append_right(2, 2, k);

    append_and(2, 2, 3); // 2 should be 0...01 or 0....00
    append_add(2, 2, 4); // now 2 is 0....00 or 1....11
    append_and(6,2,5);
    append_and(6,6,0);
    append_not(7,2);
    append_and(7,7,5);
    append_and(7,1,7);
    append_or(0,6,7);

    return;
}
# 결과 실행 시간 메모리 Grader output
1 Correct 2 ms 204 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Correct 1 ms 204 KB Output is correct
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 204 KB Incorrect min value
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 204 KB Incorrect min value
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 204 KB Incorrect sorting
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 204 KB Incorrect sorting
2 Halted 0 ms 0 KB -