結果

問題 No.47 ポケットを叩くとビスケットが2倍
ユーザー mtmtmtmtmt
提出日時 2021-02-05 14:10:18
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 356 bytes
コンパイル時間 827 ms
コンパイル使用メモリ 78,144 KB
実行使用メモリ 6,948 KB
最終ジャッジ日時 2024-07-02 05:03:36
合計ジャッジ時間 1,653 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1 WA * 2
other AC * 19 WA * 2
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <stdlib.h>
#include <stdio.h>
#include <vector>
#include <map>
#include <utility>
#include <list>
#include <math.h>
#include <algorithm>
using namespace std;


int main(){
    int n;
    cin>>n;
    int ans=0;
    while(true)
    {
        n=n>>1;
        ans++;
        if(n<1)break;
    }
    cout<<ans<<endl;
    return 0;
}
0