[백준]6359 만취한 상범 jyukki included in 백준 2017-12-01 61 words One minute Contents https://www.acmicpc.net/problem/6359 풀이: n 개의 방이 있을 때 탈출할 수 있는 사람의 수는 sqrt(n)명이다. 코드: 1 2 3 4 5 6 7 8 9 10 11 12 #include <iostream> #include <math.h> using namespace std; int main(void) { int n,T; cin >> T; for (int i = 0; i < T; i++) { cin >> n; cout << (int)sqrt(n) << endl; } return 0; } Please enable JavaScript to view the comments powered by Disqus.