Submission #147802

#TimeUsernameProblemLanguageResultExecution timeMemory
147802zscoder (#201)Play Onwards (FXCUP4_onward)C++17
100 / 100
13 ms1220 KiB
#include "make.h" #include <bits/stdc++.h> #include <ext/pb_ds/assoc_container.hpp> #include <ext/pb_ds/tree_policy.hpp> using namespace std; using namespace __gnu_pbds; #define fi first #define se second #define mp make_pair #define pb push_back typedef long long ll; typedef pair<int,int> ii; typedef vector<int> vi; typedef unsigned long long ull; typedef long double ld; typedef tree<ii, null_type, less<ii>, rb_tree_tag, tree_order_statistics_node_update> pbds; std::string MakeWord(int N, int M, std::vector<std::string> Dict) { string s; for(int i=0;i<M;i++) s+='a'; return s; //return Dict[0]; }
#include "guess.h" #include <bits/stdc++.h> #include <ext/pb_ds/assoc_container.hpp> #include <ext/pb_ds/tree_policy.hpp> using namespace std; using namespace __gnu_pbds; #define fi first #define se second #define mp make_pair #define pb push_back typedef long long ll; typedef pair<int,int> ii; typedef vector<int> vi; typedef unsigned long long ull; typedef long double ld; typedef tree<ii, null_type, less<ii>, rb_tree_tag, tree_order_statistics_node_update> pbds; std::string GuessWord(int M, std::string YH){ string s; for(int i=0;i<M;i++) s+='a'; return s; }
#Verdict Execution timeMemoryGrader output
Fetching results...