# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
1102134 | 2024-10-17T14:24:11 Z | akzytr | Detecting Molecules (IOI16_molecules) | C++17 | 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
# | 결과 | 실행 시간 | 메모리 | 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 | - |
# | 결과 | 실행 시간 | 메모리 | Grader output |
---|---|---|---|---|
1 | Incorrect | 1 ms | 340 KB | Contestant can not find answer, jury can |
2 | Halted | 0 ms | 0 KB | - |
# | 결과 | 실행 시간 | 메모리 | 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 | - |
# | 결과 | 실행 시간 | 메모리 | 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 | - |
# | 결과 | 실행 시간 | 메모리 | 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 | - |
# | 결과 | 실행 시간 | 메모리 | 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 | - |