Submission #1102134

# Submission time Handle Problem Language Result Execution time Memory
1102134 2024-10-17T14:24:11 Z akzytr Detecting Molecules (IOI16_molecules) C++17
0 / 100
1 ms 340 KB
#include "molecules.h"
#include <bits/stdc++.h>
typedef long long ll;
using namespace std;

vector<int> find_subset(int l, int u, vector<int> w) {
	vector<int> result;

	int sum = 0;
	for(int i = 0; i < w.size(); i++) {
		sum += w[i];
		if(sum >= l && sum <= u) {
            for(int j =0; j <= i; j++){
                result.push_back(j+1);
            }
            break;
		}
	}
	return result;
}

Compilation message

molecules.cpp: In function 'std::vector<int> find_subset(int, int, std::vector<int>)':
molecules.cpp:10:19: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   10 |  for(int i = 0; i < w.size(); i++) {
      |                 ~~^~~~~~~~~~
# Verdict Execution time Memory Grader output
1 Correct 1 ms 340 KB OK (n = 1, answer = NO)
2 Correct 1 ms 340 KB OK (n = 1, answer = NO)
3 Incorrect 1 ms 340 KB Integer 1 violates the range [0, 0]
4 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 1 ms 340 KB Contestant can not find answer, jury can
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 1 ms 340 KB OK (n = 1, answer = NO)
2 Correct 1 ms 340 KB OK (n = 1, answer = NO)
3 Incorrect 1 ms 340 KB Integer 1 violates the range [0, 0]
4 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 1 ms 340 KB OK (n = 1, answer = NO)
2 Correct 1 ms 340 KB OK (n = 1, answer = NO)
3 Incorrect 1 ms 340 KB Integer 1 violates the range [0, 0]
4 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 1 ms 340 KB OK (n = 1, answer = NO)
2 Correct 1 ms 340 KB OK (n = 1, answer = NO)
3 Incorrect 1 ms 340 KB Integer 1 violates the range [0, 0]
4 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 1 ms 340 KB OK (n = 1, answer = NO)
2 Correct 1 ms 340 KB OK (n = 1, answer = NO)
3 Incorrect 1 ms 340 KB Integer 1 violates the range [0, 0]
4 Halted 0 ms 0 KB -