Submission #1676639


Source Code Expand

include<bits/stdc++.h>

using namespace std;

int main(){
        int N;
        cin>>N;
        cout<<sqrt(sqrt(N))<<endl;
        return 0;
}

Submission Info

Submission Time
Task B - エージェント高橋君
User agony
Language C++14 (GCC 5.4.1)
Score 0
Code Size 154 Byte
Status CE

Compile Error

./Main.cpp:1:1: error: ‘include’ does not name a type
 include<bits/stdc++.h>
 ^
./Main.cpp: In function ‘int main()’:
./Main.cpp:7:9: error: ‘cin’ was not declared in this scope
         cin>>N;
         ^
./Main.cpp:8:9: error: ‘cout’ was not declared in this scope
         cout<<sqrt(sqrt(N))<<endl;
         ^
./Main.cpp:8:26: error: ‘sqrt’ was not declared in this scope
         cout<<sqrt(sqrt(N))<<endl;
                          ^
./Main.cpp:8:27: error: ‘sqrt’ was not declared in this scope
         cout<<sqrt(sqrt(N))<<endl;
                           ^
./Main.cpp:8:27: error: redeclaration of ‘<typeprefixerror>sqrt’
./Main.cpp:8:26: note: previous declaration ‘<typeprefixerror>sqrt’
         cout<<sqrt(sqrt(N))<<endl;
                          ^
./Main.cpp:8:30: error: ‘endl’ was not declared in this scope
         cout<<sqrt(sqrt(N))<<endl;
                              ^