結果

問題 No.289 数字を全て足そう
ユーザー yuppe19 😺
提出日時 2015-10-17 07:57:35
言語 Python2
(2.7.18)
結果
AC  
実行時間 16 ms / 1,000 ms
コード長 124 bytes
コンパイル時間 190 ms
コンパイル使用メモリ 7,076 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-07 20:21:23
合計ジャッジ時間 1,292 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 21
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/python
from string import digits
s = raw_input()
res = sum(map(int, filter(lambda e: e in digits, s)))
print res
0