結果
問題 |
No.47 ポケットを叩くとビスケットが2倍
|
ユーザー |
|
提出日時 | 2015-06-25 22:04:43 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 2 ms / 5,000 ms |
コード長 | 303 bytes |
コンパイル時間 | 1,092 ms |
コンパイル使用メモリ | 157,692 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-07-07 17:37:21 |
合計ジャッジ時間 | 1,812 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 21 |
ソースコード
using namespace std; #include <bits/stdc++.h> #define BEGIN ios_base::sync_with_stdio(0);cin.tie(0); #define END return EXIT_SUCCESS; #define FOR(I,A,B) for(int (I)=(A);(I)<(B);++(I)) int main() { BEGIN int N;cin>>N; int a=1; for(int i=1;;i<<=1,++a) { if(N<=i)break; } cout<<(a-1)<<endl; END }