답안 #75411

# 제출 시각 아이디 문제 언어 결과 실행 시간 메모리
75411 2018-09-09T15:34:32 Z khalilmiri 콤보 (IOI18_combo) C++14
0 / 100
2 ms 328 KB
#include <bits/stdc++.h>
#include <string>
#include <combo.h>
using namespace std;
vector<int> tab;

string guess_sequence(int N)
{   tab.push_back(0);
tab.push_back(1);
tab.push_back('X' - 'A');
tab.push_back('Y'- 'A');
    do{ string g="";
         for(int i=0;i<3;i++)
       {           
            char x= tab[i] + 'A';
            g=g+x;
            
            }
        if(press(g)==3)
        {
            return(g);
        }
        
    }while(next_permutation(tab.begin(),tab.end()));
}

Compilation message

combo.cpp: In function 'std::string guess_sequence(int)':
combo.cpp:25:1: warning: control reaches end of non-void function [-Wreturn-type]
   25 | }
      | ^
# 결과 실행 시간 메모리 Grader output
1 Runtime error 2 ms 328 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# 결과 실행 시간 메모리 Grader output
1 Runtime error 2 ms 328 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -