結果

問題 No.289 数字を全て足そう
ユーザー tsuchan13tsuchan13
提出日時 2024-08-12 19:41:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 46 ms / 1,000 ms
コード長 106 bytes
コンパイル時間 402 ms
コンパイル使用メモリ 82,168 KB
実行使用メモリ 66,488 KB
最終ジャッジ日時 2024-08-12 19:41:14
合計ジャッジ時間 2,315 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,264 KB
testcase_01 AC 33 ms
52,156 KB
testcase_02 AC 35 ms
52,444 KB
testcase_03 AC 34 ms
52,664 KB
testcase_04 AC 33 ms
52,500 KB
testcase_05 AC 39 ms
60,928 KB
testcase_06 AC 40 ms
60,100 KB
testcase_07 AC 46 ms
65,008 KB
testcase_08 AC 42 ms
64,756 KB
testcase_09 AC 39 ms
61,900 KB
testcase_10 AC 41 ms
62,560 KB
testcase_11 AC 43 ms
64,292 KB
testcase_12 AC 44 ms
66,488 KB
testcase_13 AC 41 ms
63,268 KB
testcase_14 AC 45 ms
66,432 KB
testcase_15 AC 44 ms
64,224 KB
testcase_16 AC 43 ms
62,988 KB
testcase_17 AC 42 ms
64,104 KB
testcase_18 AC 43 ms
64,980 KB
testcase_19 AC 44 ms
65,352 KB
testcase_20 AC 42 ms
65,264 KB
testcase_21 AC 35 ms
51,752 KB
testcase_22 AC 42 ms
65,396 KB
testcase_23 AC 39 ms
59,028 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input()
s = list(S)
ans = 0
#print(s)
for i in s:
	try:
		ans += int(i)
	except:
		continue
print(ans)
0