Submission #233564

# Submission time Handle Problem Language Result Execution time Memory
233564 2020-05-21T01:39:32 Z pere_gil Detecting Molecules (IOI16_molecules) C++14
0 / 100
5 ms 384 KB
#include <iostream>
#include "molecules.h"

using namespace std;

std::vector<int> find_subset(int l, int u, std::vector<int> w){
    bool ja=false;
    int pos;
    for(int i=l;i<=u;i++){
        if(i%w[0]==0){
            ja=true;
            pos=i;
        }
    }
    std::vector<int> res;
    if(ja){
        for(int i=0;i<pos;i++){
            res.push_back(i);
        }
    }
    return res;
}
# Verdict Execution time Memory Grader output
1 Correct 5 ms 256 KB OK (n = 1, answer = NO)
2 Correct 5 ms 256 KB OK (n = 1, answer = NO)
3 Incorrect 5 ms 384 KB Integer 10 violates the range [0, 1]
4 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 4 ms 384 KB Contestant can not find answer, jury can
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 5 ms 256 KB OK (n = 1, answer = NO)
2 Correct 5 ms 256 KB OK (n = 1, answer = NO)
3 Incorrect 5 ms 384 KB Integer 10 violates the range [0, 1]
4 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 5 ms 256 KB OK (n = 1, answer = NO)
2 Correct 5 ms 256 KB OK (n = 1, answer = NO)
3 Incorrect 5 ms 384 KB Integer 10 violates the range [0, 1]
4 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 5 ms 256 KB OK (n = 1, answer = NO)
2 Correct 5 ms 256 KB OK (n = 1, answer = NO)
3 Incorrect 5 ms 384 KB Integer 10 violates the range [0, 1]
4 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 5 ms 256 KB OK (n = 1, answer = NO)
2 Correct 5 ms 256 KB OK (n = 1, answer = NO)
3 Incorrect 5 ms 384 KB Integer 10 violates the range [0, 1]
4 Halted 0 ms 0 KB -