結果

問題 No.47 ポケットを叩くとビスケットが2倍
ユーザー togatoga
提出日時 2015-04-14 20:34:10
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
AC  
実行時間 2 ms / 5,000 ms
コード長 486 bytes
コンパイル時間 1,192 ms
コンパイル使用メモリ 157,292 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-07-04 14:29:47
合計ジャッジ時間 1,943 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 21
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

#define mp make_pair
#define mt make_tuple
#define pb push_back
#define rep(i, n) for (int i = 0; i < (n); i++)

using namespace std;

typedef long long ll;
typedef unsigned long long ull;
typedef pair<int, int> pii;
typedef pair<long, long> pll;

const int INF = 1 << 29;
const double EPS = 1e-9;
const int MOD = 100000007;
int N;

int main(){
  int pos = 1;
  cin >> N;
  int cnt = 0;
  while (pos < N){
    pos *= 2;
    cnt++;
  }
  cout << cnt << endl;
}
0