結果

問題 No.289 数字を全て足そう
ユーザー unyaunyaunyaunya
提出日時 2018-02-13 23:13:54
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 21 ms / 1,000 ms
コード長 256 bytes
コンパイル時間 748 ms
コンパイル使用メモリ 66,052 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-12-14 10:19:16
合計ジャッジ時間 1,940 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 21
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#define P(x) cout <<x<<endl
using namespace std;
int main(){
    string str;
    int t=0;
    cin >> str;
    for(int i=0;i<str.size();i++){
        try{
            t = t+stoi(str.substr(i, 1));
        }catch(...){}
    }
    P(t);
}
0