結果

問題 No.289 数字を全て足そう
ユーザー Shin09shinShin09shin
提出日時 2019-01-15 06:31:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 60 ms / 1,000 ms
コード長 109 bytes
コンパイル時間 149 ms
コンパイル使用メモリ 82,728 KB
実行使用メモリ 71,380 KB
最終ジャッジ日時 2024-06-23 19:52:51
合計ジャッジ時間 2,388 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 53 ms
63,076 KB
testcase_01 AC 54 ms
63,372 KB
testcase_02 AC 54 ms
63,420 KB
testcase_03 AC 54 ms
63,036 KB
testcase_04 AC 53 ms
63,720 KB
testcase_05 AC 56 ms
65,116 KB
testcase_06 AC 56 ms
64,312 KB
testcase_07 AC 58 ms
65,768 KB
testcase_08 AC 58 ms
67,156 KB
testcase_09 AC 55 ms
64,776 KB
testcase_10 AC 56 ms
64,280 KB
testcase_11 AC 55 ms
65,108 KB
testcase_12 AC 58 ms
67,336 KB
testcase_13 AC 56 ms
65,148 KB
testcase_14 AC 58 ms
66,760 KB
testcase_15 AC 56 ms
64,832 KB
testcase_16 AC 56 ms
65,192 KB
testcase_17 AC 58 ms
67,228 KB
testcase_18 AC 59 ms
66,444 KB
testcase_19 AC 55 ms
64,020 KB
testcase_20 AC 58 ms
65,924 KB
testcase_21 AC 55 ms
64,488 KB
testcase_22 AC 58 ms
65,972 KB
testcase_23 AC 60 ms
71,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import re

i = input()
pattern = r'([0-9])'
lists = re.findall(pattern, i)

print(sum(int(i) for i in lists))
0