제출 #615254

#제출 시각아이디문제언어결과실행 시간메모리
615254AriaH콤보 (IOI18_combo)C++17
10 / 100
74 ms572 KiB
#include "combo.h" #pragma GCC optimize("O3") #include <bits/stdc++.h> using namespace std; typedef long long ll; typedef long double ld; typedef pair < int, int > pii; typedef pair < ll, ll > pll; #define F first #define S second #define all(x) x.begin(), x.end() #define SZ(x) (int)x.size() #define Mp make_pair #define endl "\n" #define fast_io ios::sync_with_stdio(0); cin.tie(0); cout.tie(0); const int N = 1e6 + 10; const int LOG = 20; const ll mod = 1e9 + 7; const ll inf = 8e18; string A[4] = {"A", "B", "X", "Y"}; string guess_sequence(int n) { string ans; for(int i = 0; i < n; i ++) { for(int j = 0; j < 4; j ++) { if(press(ans + A[j]) == i + 1) { ans += A[j]; break; } } } return ans; }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...