UVA 11384 - Help is needed for Dexter

제목 주소: http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem&problem=2379
유형 문 제 를 내밀다.
코드 는 다음 과 같 습 니 다:
#include <iostream>
#include <queue>
#include <algorithm>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <string>
#include <cmath>
#include <map>
using namespace std;


const int N=1510;
typedef long long LL;

int f(int k)
{
    if(k==1)
        return 1;
    return f(k/2)+1;
}

int main()
{
    int n;
    while(scanf("%d",&n)!=EOF)
    {
        printf("%d
",f(n)); } return 0; }

좋은 웹페이지 즐겨찾기