結果

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

ソースコード

diff #

#define _CRT_SECURE_NO_WARNINGS
#define _USE_MATH_DEFINES
#include <stdio.h>
#include <algorithm>
#include <utility>
#include <functional>
#include <cstring>
#include <queue>
#include <stack>
#include <math.h>
#include <iterator>
#include <vector>
#include <string>
#include <set>
#include <math.h>
#include <iostream> 
#include<map>
#include <list>
#include <typeinfo>
using namespace std;
#define REP(a,b) for(long long a = 0;a < b;++a)
int main() {
	long long ans = 1;
	int n;
	int cnt = 0;
	cin >> n;
	while (ans < n) {
		ans *= 2;
		cnt++;
	}
	cout << cnt << endl;
}
0