답안 #1033845

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
1033845 2024-07-25T06:55:57 Z denislav Hidden Sequence (info1cup18_hidden) C++17
10 / 100
400 ms 344 KB
# include <iostream>
# include <vector>
# include "grader.h"
//# include "grader.cpp"
using namespace std;

int n;

vector < int > findSequence (int N)
{
    n=N;
    for(int mask=0;mask<(1<<n);mask++)
    {
        vector<int> v;
        for(int bit=0;bit<n;bit++) v.push_back(((1<<bit)&mask)>0);
        if(isSubsequence(v)) return v;
    }
}

Compilation message

hidden.cpp: In function 'std::vector<int> findSequence(int)':
hidden.cpp:18:1: warning: control reaches end of non-void function [-Wreturn-type]
   18 | }
      | ^
grader.cpp: In function 'int main()':
grader.cpp:28:26: warning: format '%d' expects argument of type 'int', but argument 3 has type 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wformat=]
   28 |     fprintf (fifo_out, "%d\n", ans.size ());
      |                         ~^     ~~~~~~~~~~~
      |                          |              |
      |                          int            std::vector<int>::size_type {aka long unsigned int}
      |                         %ld
grader.cpp:29:20: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
   29 |     for (int i=0; i<ans.size () && i < N; i++)
      |                   ~^~~~~~~~~~~~
# 결과 실행 시간 메모리 Grader output
1 Partially correct 1 ms 344 KB Output is partially correct: Maximum length of a query = 8
2 Partially correct 1 ms 344 KB Output is partially correct: Maximum length of a query = 10
3 Partially correct 1 ms 344 KB Output is partially correct: Maximum length of a query = 8
4 Partially correct 3 ms 344 KB Output is partially correct: Maximum length of a query = 9
5 Partially correct 1 ms 344 KB Output is partially correct: Maximum length of a query = 7
# 결과 실행 시간 메모리 Grader output
1 Execution timed out 1773 ms 344 KB Time limit exceeded (wall clock)
2 Halted 0 ms 0 KB -