結果

問題 No.289 数字を全て足そう
ユーザー 🍡yurahuna🍡yurahuna
提出日時 2016-05-04 12:18:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 43 ms / 1,000 ms
コード長 85 bytes
コンパイル時間 1,255 ms
コンパイル使用メモリ 81,944 KB
実行使用メモリ 60,516 KB
最終ジャッジ日時 2024-10-08 00:55:12
合計ジャッジ時間 2,302 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,948 KB
testcase_01 AC 39 ms
52,040 KB
testcase_02 AC 37 ms
51,488 KB
testcase_03 AC 34 ms
52,192 KB
testcase_04 AC 33 ms
52,144 KB
testcase_05 AC 43 ms
58,424 KB
testcase_06 AC 40 ms
58,884 KB
testcase_07 AC 43 ms
58,552 KB
testcase_08 AC 40 ms
60,516 KB
testcase_09 AC 37 ms
57,332 KB
testcase_10 AC 38 ms
58,232 KB
testcase_11 AC 39 ms
60,244 KB
testcase_12 AC 41 ms
59,324 KB
testcase_13 AC 39 ms
59,304 KB
testcase_14 AC 39 ms
59,364 KB
testcase_15 AC 38 ms
58,948 KB
testcase_16 AC 37 ms
59,272 KB
testcase_17 AC 40 ms
58,428 KB
testcase_18 AC 39 ms
58,500 KB
testcase_19 AC 38 ms
59,392 KB
testcase_20 AC 39 ms
58,520 KB
testcase_21 AC 35 ms
52,212 KB
testcase_22 AC 39 ms
58,480 KB
testcase_23 AC 38 ms
57,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

s = input()
ans = 0
for c in s:
    if c.isdigit():
        ans += int(c)
print(ans)
0