Submission #909485

# Submission time Handle Problem Language Result Execution time Memory
909485 2024-01-17T08:24:39 Z MinhAnhnd Coreputer (IOI23_coreputer) C++17
0 / 100
1 ms 344 KB
#include "coreputer.h"
#include <bits/stdc++.h>
using namespace std;
std::vector<int> cut(int N, std::vector<int> m){
    while(!m.empty()&&(*(m.rbegin())>=N)){
        m.pop_back();
    }
    return m;
}
std::vector<int> malfunctioning_cores(int N) {

    vector<int> a;
    vector<int> larger;
    vector<int> smaller;
    vector<int> b;
    for (int i = 0;i<=N-1;i++){
        b.push_back(0);
    }

    for (int i = 0;i<=min(7,N-1);i++){
        a.push_back(i);
    }
    int half = run_diagnostic(a);
    int state = abs(half);
    a.clear();

    if (half == 1){
        for (int i = 0;i<=min(7,N-1);i++){
        larger.push_back(i);
        }
    } else{
        for (int i = 8;i<=min(15,N-1);i++){
        larger.push_back(i);
        }
    }

    int eight;
    int onesix;
    int pos;
    
    for (int i = 0;i<=N-1;i++){
        b.push_back(0);
    }
	return b;
}

Compilation message

coreputer.cpp: In function 'std::vector<int> malfunctioning_cores(int)':
coreputer.cpp:24:9: warning: unused variable 'state' [-Wunused-variable]
   24 |     int state = abs(half);
      |         ^~~~~
coreputer.cpp:37:9: warning: unused variable 'eight' [-Wunused-variable]
   37 |     int eight;
      |         ^~~~~
coreputer.cpp:38:9: warning: unused variable 'onesix' [-Wunused-variable]
   38 |     int onesix;
      |         ^~~~~~
coreputer.cpp:39:9: warning: unused variable 'pos' [-Wunused-variable]
   39 |     int pos;
      |         ^~~
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 344 KB Incorrect
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 344 KB Incorrect
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 344 KB Incorrect
2 Halted 0 ms 0 KB -