結果

問題 No.289 数字を全て足そう
ユーザー jolly_gliscor
提出日時 2018-02-22 19:20:38
言語 C++11(廃止可能性あり)
(gcc 13.3.0)
結果
AC  
実行時間 1 ms / 1,000 ms
コード長 685 bytes
コンパイル時間 271 ms
コンパイル使用メモリ 42,636 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-10-02 08:23:53
合計ジャッジ時間 1,032 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 21
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:44:8: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   44 |   scanf("%s",input);
      |   ~~~~~^~~~~~~~~~~~

ソースコード

diff #

#include <cstdio>
#include <cstdlib>
#include <cctype>
#include <string>

int ctoi(const char c)
{
  switch(c){
  case '0': return 0;
  case '1': return 1;
  case '2': return 2;
  case '3': return 3;
  case '4': return 4;
  case '5': return 5;
  case '6': return 6;
  case '7': return 7;
  case '8': return 8;
  case '9': return 9;
  default : return 0;
  }
}

int str2sum(char *str)
{
  int sum = 0;
  for(int i=0;;i++){

    if ( str[i] == '\0' ){
      break;
    }
    
    if ( isdigit(str[i]) ){
      sum += ctoi(str[i]);
    }
    
  }
  return sum;
}

int main(void)
{
  int a;
  char input[10000];
  scanf("%s",input);
  a = str2sum(input);
  printf("%d\n",a);
  return 0;
}
0