Submission #132837

# Submission time Handle Problem Language Result Execution time Memory
132837 2019-07-19T17:44:40 Z reda Detecting Molecules (IOI16_molecules) C++14
0 / 100
2 ms 376 KB
#include<bits/stdc++.h>
using namespace std ;
 vector<int>find_subset(int l, int u, vector<int> w)
{
    vector<int> ans;
   for(int i=0;i<w.size();i++)
    for(int j=0;j<w.size();j++)
   {
       if(i==j)continue ; 
       if(w[i]+w[j]>=l && w[i]+w[j]<=u)
       {
           ans.push_back(i);
           ans.push_back(j);
           return ans;
       }
   }
return ans;
}

Compilation message

molecules.cpp: In function 'std::vector<int> find_subset(int, int, std::vector<int>)':
molecules.cpp:6:17: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
    for(int i=0;i<w.size();i++)
                ~^~~~~~~~~
molecules.cpp:7:18: warning: comparison between signed and unsigned integer expressions [-Wsign-compare]
     for(int j=0;j<w.size();j++)
                 ~^~~~~~~~~
# Verdict Execution time Memory Grader output
1 Correct 2 ms 376 KB OK (n = 1, answer = NO)
2 Correct 2 ms 376 KB OK (n = 1, answer = NO)
3 Incorrect 2 ms 376 KB Contestant can not find answer, jury can
4 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 2 ms 256 KB Contestant can not find answer, jury can
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 2 ms 376 KB OK (n = 1, answer = NO)
2 Correct 2 ms 376 KB OK (n = 1, answer = NO)
3 Incorrect 2 ms 376 KB Contestant can not find answer, jury can
4 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 2 ms 376 KB OK (n = 1, answer = NO)
2 Correct 2 ms 376 KB OK (n = 1, answer = NO)
3 Incorrect 2 ms 376 KB Contestant can not find answer, jury can
4 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 2 ms 376 KB OK (n = 1, answer = NO)
2 Correct 2 ms 376 KB OK (n = 1, answer = NO)
3 Incorrect 2 ms 376 KB Contestant can not find answer, jury can
4 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 2 ms 376 KB OK (n = 1, answer = NO)
2 Correct 2 ms 376 KB OK (n = 1, answer = NO)
3 Incorrect 2 ms 376 KB Contestant can not find answer, jury can
4 Halted 0 ms 0 KB -