結果
問題 |
No.47 ポケットを叩くとビスケットが2倍
|
ユーザー |
|
提出日時 | 2018-09-05 22:32:11 |
言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
結果 |
AC
|
実行時間 | 1 ms / 5,000 ms |
コード長 | 331 bytes |
コンパイル時間 | 258 ms |
コンパイル使用メモリ | 22,528 KB |
実行使用メモリ | 6,820 KB |
最終ジャッジ日時 | 2024-11-15 17:22:51 |
合計ジャッジ時間 | 951 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 21 |
コンパイルメッセージ
main.cpp: In function ‘int main()’: main.cpp:5:10: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result] 5 | scanf("%ld",&N); | ~~~~~^~~~~~~~~~
ソースコード
#include <stdio.h> int main(){ long N; scanf("%ld",&N); int n = 1; int count = 0; while (1){ if (2*n <= N){ n *= 2; count++; }else{ break; } } if (N-n == 0){ printf("%d\n",count); }else{ printf("%d\n",count+1); } }