結果

問題 No.47 ポケットを叩くとビスケットが2倍
ユーザー phi_prog_8
提出日時 2016-02-26 22:03:48
言語 C90
(gcc 12.3.0)
結果
WA  
実行時間 -
コード長 335 bytes
コンパイル時間 385 ms
コンパイル使用メモリ 22,400 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-09-22 14:03:14
合計ジャッジ時間 890 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 20 WA * 1
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function ‘main’:
main.c:12:3: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   12 |   scanf("%ld",&n);
      |   ^~~~~~~~~~~~~~~

ソースコード

diff #

#include <stdio.h>
#include <string.h>
#include <math.h>
int main(void) {
  long int n;
  long int i;
  long int a=1;
  //  long int
  //  double n;
  //  double a;
  
  scanf("%ld",&n);

  for (i=1; i<100000; i++) {
    a*=2;
    //    printf("i=%ld a=%ld\n",i,a);
    if (a>=n) { break; }
  }    

  printf("%ld\n",i);
  return 0;
}
0