結果

問題 No.289 数字を全て足そう
ユーザー soupesuteakasoupesuteaka
提出日時 2016-03-02 17:40:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 59 ms / 1,000 ms
コード長 212 bytes
コンパイル時間 571 ms
コンパイル使用メモリ 82,132 KB
実行使用メモリ 66,376 KB
最終ジャッジ日時 2024-10-08 00:47:07
合計ジャッジ時間 2,798 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
63,256 KB
testcase_01 AC 56 ms
62,648 KB
testcase_02 AC 57 ms
62,584 KB
testcase_03 AC 54 ms
63,572 KB
testcase_04 AC 54 ms
62,428 KB
testcase_05 AC 57 ms
64,580 KB
testcase_06 AC 57 ms
65,828 KB
testcase_07 AC 58 ms
65,040 KB
testcase_08 AC 57 ms
64,812 KB
testcase_09 AC 56 ms
64,120 KB
testcase_10 AC 57 ms
64,348 KB
testcase_11 AC 57 ms
66,376 KB
testcase_12 AC 58 ms
65,752 KB
testcase_13 AC 57 ms
64,728 KB
testcase_14 AC 59 ms
65,460 KB
testcase_15 AC 57 ms
64,904 KB
testcase_16 AC 58 ms
64,460 KB
testcase_17 AC 58 ms
64,932 KB
testcase_18 AC 59 ms
65,548 KB
testcase_19 AC 58 ms
65,000 KB
testcase_20 AC 59 ms
65,680 KB
testcase_21 AC 55 ms
62,648 KB
testcase_22 AC 58 ms
64,940 KB
testcase_23 AC 57 ms
65,480 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#coding: UTF-8

import sys
import re
import itertools
from collections import deque

### defs ###


### main ###
S = sys.stdin.readline().strip('\n')
ans=0
for c in S:
	if(c.isdigit()):
		ans += int(c)
print(ans)
0