# | Submission time | Handle | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
5331 | 2014-03-29T07:33:59 Z | jspark19990205 | 제곱근 구하기 1 (gs13068_sqrt1) | C++ | 0 ms | 0 KB |
#include<stdio.h> int main() { int n; scanf("%d",&n); printf("%f\n",sqrt(n)); return 0; }