結果

問題 No.289 数字を全て足そう
ユーザー rlangevinrlangevin
提出日時 2024-12-22 20:22:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 46 ms / 1,000 ms
コード長 96 bytes
コンパイル時間 202 ms
コンパイル使用メモリ 81,972 KB
実行使用メモリ 60,336 KB
最終ジャッジ日時 2024-12-22 20:22:54
合計ジャッジ時間 2,128 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
52,880 KB
testcase_01 AC 42 ms
52,280 KB
testcase_02 AC 42 ms
52,484 KB
testcase_03 AC 39 ms
52,316 KB
testcase_04 AC 40 ms
51,776 KB
testcase_05 AC 41 ms
58,804 KB
testcase_06 AC 45 ms
57,908 KB
testcase_07 AC 44 ms
58,860 KB
testcase_08 AC 42 ms
59,124 KB
testcase_09 AC 42 ms
59,452 KB
testcase_10 AC 43 ms
58,992 KB
testcase_11 AC 43 ms
59,212 KB
testcase_12 AC 44 ms
59,268 KB
testcase_13 AC 43 ms
58,392 KB
testcase_14 AC 45 ms
59,432 KB
testcase_15 AC 44 ms
59,824 KB
testcase_16 AC 43 ms
58,776 KB
testcase_17 AC 46 ms
58,672 KB
testcase_18 AC 44 ms
58,920 KB
testcase_19 AC 45 ms
59,568 KB
testcase_20 AC 44 ms
60,336 KB
testcase_21 AC 38 ms
52,724 KB
testcase_22 AC 43 ms
59,140 KB
testcase_23 AC 43 ms
57,932 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

ans = 0
for s in input():
	if 0 <= ord(s) - ord("0") <= 9:
		ans += ord(s) - ord("0")
print(ans)
0