結果

問題 No.47 ポケットを叩くとビスケットが2倍
ユーザー tenkyu9
提出日時 2018-03-07 09:23:32
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 388 bytes
コンパイル時間 585 ms
コンパイル使用メモリ 80,584 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-25 02:18:36
合計ジャッジ時間 1,346 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 21
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<string>
#include<algorithm>
#include<cmath>
#include<iomanip>
#include<cstring>
#include<map>
#include<vector>
#include<queue>
#include<utility>
using namespace std;
typedef long long int ll;

int main(){

  int n, num=1, ans=0;
  cin >> n;

  while(n){
    if(n<=num){
      cout << ans << endl;
      return 0;
    }
    num*=2;
    ans++;
  }

  return 0;
}
0