結果

問題 No.289 数字を全て足そう
ユーザー mahiromahiro
提出日時 2020-01-11 17:48:17
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 40 ms / 1,000 ms
コード長 72 bytes
コンパイル時間 140 ms
コンパイル使用メモリ 82,396 KB
実行使用メモリ 61,020 KB
最終ジャッジ日時 2024-11-25 05:19:50
合計ジャッジ時間 1,774 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,048 KB
testcase_01 AC 35 ms
52,080 KB
testcase_02 AC 34 ms
51,756 KB
testcase_03 AC 34 ms
52,088 KB
testcase_04 AC 33 ms
52,160 KB
testcase_05 AC 36 ms
58,316 KB
testcase_06 AC 36 ms
58,580 KB
testcase_07 AC 37 ms
60,496 KB
testcase_08 AC 38 ms
58,856 KB
testcase_09 AC 37 ms
57,400 KB
testcase_10 AC 37 ms
58,916 KB
testcase_11 AC 38 ms
58,824 KB
testcase_12 AC 39 ms
61,020 KB
testcase_13 AC 38 ms
59,616 KB
testcase_14 AC 39 ms
59,668 KB
testcase_15 AC 37 ms
59,568 KB
testcase_16 AC 39 ms
59,144 KB
testcase_17 AC 40 ms
59,276 KB
testcase_18 AC 40 ms
59,508 KB
testcase_19 AC 38 ms
59,524 KB
testcase_20 AC 38 ms
59,764 KB
testcase_21 AC 33 ms
52,468 KB
testcase_22 AC 36 ms
59,388 KB
testcase_23 AC 37 ms
60,504 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input()
nums = [int(i) for i in S if i.isnumeric()]
print(sum(nums))
0