제출 #1006806

#제출 시각아이디문제언어결과실행 시간메모리
1006806GTA콤보 (IOI18_combo)C++17
컴파일 에러
0 ms0 KiB
#include <bits/stdc++.h> #include "combo.h" using namespace std; #define fr(m,n,k) for(int m=n;m<=k;m++) int n; string guess_sequence(int N) { string v = "ABXY"; fr(i, 0, 3) { fr(j, 0, 3) { fr(l, 0, 3) { string p = v[i] + v[j] + v[l]; int x = press(p); if (x == 3) { return p; } } } } }

컴파일 시 표준 에러 (stderr) 메시지

combo.cpp: In function 'std::string guess_sequence(int)':
combo.cpp:12:32: error: conversion from 'int' to non-scalar type 'std::string' {aka 'std::__cxx11::basic_string<char>'} requested
   12 |         string p = v[i] + v[j] + v[l];
combo.cpp:8:14: warning: control reaches end of non-void function [-Wreturn-type]
    8 |   string v = "ABXY";
      |              ^~~~~~