結果
| 問題 | No.289 数字を全て足そう | 
| コンテスト | |
| ユーザー |  | 
| 提出日時 | 2020-10-11 11:22:40 | 
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) | 
| 結果 | 
                                RE
                                 
                             | 
| 実行時間 | - | 
| コード長 | 130 bytes | 
| コンパイル時間 | 95 ms | 
| コンパイル使用メモリ | 12,416 KB | 
| 実行使用メモリ | 10,880 KB | 
| 最終ジャッジ日時 | 2024-07-20 17:11:01 | 
| 合計ジャッジ時間 | 1,631 ms | 
| ジャッジサーバーID (参考情報) | judge1 / judge3 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 3 | 
| other | AC * 2 RE * 19 | 
ソースコード
# coding=utf-8:
import re
s = str(input())
n = 0
string = re.sub(r'[a-zA-]+', '0', s)
for i in string:
    n += int(i)
print(n)
            
            
            
        