답안 #305671

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
305671 2020-09-23T18:58:34 Z amunduzbaev Detecting Molecules (IOI16_molecules) C++14
0 / 100
1 ms 256 KB
#include "molecules.h"
#include <bits/stdc++.h>

using namespace std;
vector<int> find_subset(int l, int u, vector<int> a) {

    vector<int>ans;
    int sum=0,i=0;
    while(sum+a[i]<u){
            ans.push_back(i+1);
        sum+=a[i];
        i++;
    }
    return ans;
}
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 256 KB Integer 6 violates the range [0, 1]
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 0 ms 256 KB sum of weights should be in [302..304] but it is 301
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 256 KB Integer 6 violates the range [0, 1]
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 256 KB Integer 6 violates the range [0, 1]
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 256 KB Integer 6 violates the range [0, 1]
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Incorrect 1 ms 256 KB Integer 6 violates the range [0, 1]
2 Halted 0 ms 0 KB -