Submission #866273

#TimeUsernameProblemLanguageResultExecution timeMemory
866273lomtaCluedo (IOI10_cluedo)C++17
Compilation error
0 ms0 KiB
#include "grader.h" #include "cluedo.h" #include <bits/stdc++.h> using namepsace std; void Solve(){ int a=1,b=1,c=1; int r=1; while(r!=0){ r = Theory(a,b,c); if(r==1){ a++; } if(r==2){ b++; } if(r==3){ c++; } } if(r==0){ return; } return; }

Compilation message (stderr)

cluedo.cpp:4:7: error: expected nested-name-specifier before 'namepsace'
    4 | using namepsace std;
      |       ^~~~~~~~~