結果

問題 No.289 数字を全て足そう
ユーザー chacoder1
提出日時 2020-12-12 23:19:24
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 4 ms / 1,000 ms
コード長 252 bytes
コンパイル時間 2,586 ms
コンパイル使用メモリ 192,180 KB
最終ジャッジ日時 2025-01-16 23:06:12
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 21
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

int main(){
  string S;
  cin>>S;
  int len=S.length();
  int ans=0;
  for(int i=0;i<len;i++){
    if(S.at(i)>='0' && S.at(i)<='9'){
      ans+=(S.at(i)-'0');
    }  
  }
  cout<<ans<<endl; 
  return 0;
}
0