結果

問題 No.378 名声値を稼ごう
ユーザー notetonousnotetonous
提出日時 2016-06-17 22:39:05
言語 C90
(gcc 12.3.0)
結果
AC  
実行時間 1 ms / 2,000 ms
コード長 334 bytes
コンパイル時間 267 ms
コンパイル使用メモリ 20,096 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-29 13:54:41
合計ジャッジ時間 537 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 5
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.c: In function ‘main’:
main.c:5:3: warning: ignoring return value of ‘scanf’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
    5 |   scanf("%lld",&N);
      |   ^~~~~~~~~~~~~~~~

ソースコード

diff #

#include <stdio.h>
int main(){
  long long int N,n;
  long long int ans=0;
  scanf("%lld",&N);
  if(N%2==0){
  n=N/2;
  while(n!=0){
    ans+=n;
    n/=2;
  }
  ans=(N/2)*2-ans;
  printf("%lld\n",ans);
  }

  else{
    n=N;
    while(n!=0){
      ans+=n;
      n/=2;
    }
    ans=N-ans+N;
    printf("%lld\n",ans);
  }
  return 0;
}
0