Submission #889923

#TimeUsernameProblemLanguageResultExecution timeMemory
889923elotelo966The Big Prize (IOI17_prize)C++17
Compilation error
0 ms0 KiB
#include "prize.h" #include <bits/stdc++.h> using namesapce std; int find_best(int n) { int l=0,r=n; while(l<=r) { int m=(l+r)/2; std::vector<int> res = ask(m); if(res[0] + res[1] == 0) return m; if(res[0]<res[1]) l=m+1; else r=m-1; } return 0; }

Compilation message (stderr)

prize.cpp:3:7: error: expected nested-name-specifier before 'namesapce'
    3 | using namesapce std;
      |       ^~~~~~~~~