結果

問題 No.289 数字を全て足そう
ユーザー 双六双六
提出日時 2020-07-27 03:38:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 49 ms / 1,000 ms
コード長 360 bytes
コンパイル時間 230 ms
コンパイル使用メモリ 82,848 KB
実行使用メモリ 67,836 KB
最終ジャッジ日時 2024-06-28 19:54:28
合計ジャッジ時間 2,060 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
54,336 KB
testcase_01 AC 34 ms
54,856 KB
testcase_02 AC 35 ms
53,420 KB
testcase_03 AC 38 ms
53,880 KB
testcase_04 AC 35 ms
53,684 KB
testcase_05 AC 40 ms
62,112 KB
testcase_06 AC 40 ms
61,440 KB
testcase_07 AC 46 ms
65,880 KB
testcase_08 AC 47 ms
65,684 KB
testcase_09 AC 43 ms
63,412 KB
testcase_10 AC 46 ms
63,488 KB
testcase_11 AC 47 ms
66,344 KB
testcase_12 AC 49 ms
67,480 KB
testcase_13 AC 47 ms
65,108 KB
testcase_14 AC 48 ms
67,836 KB
testcase_15 AC 45 ms
64,740 KB
testcase_16 AC 47 ms
64,680 KB
testcase_17 AC 47 ms
64,892 KB
testcase_18 AC 46 ms
66,448 KB
testcase_19 AC 44 ms
66,188 KB
testcase_20 AC 45 ms
64,756 KB
testcase_21 AC 35 ms
54,116 KB
testcase_22 AC 43 ms
65,872 KB
testcase_23 AC 41 ms
59,752 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# import sys; input = sys.stdin.buffer.readline
# sys.setrecursionlimit(10**7)
from collections import defaultdict
con = 10 ** 9 + 7; INF = float("inf")

def getlist():
	return list(map(int, input().split()))

#処理内容
def main():
	S = input()
	ans = 0
	for i in S:
		try:
			ans += int(i)
		except:
			pass
	print(ans)

if __name__ == '__main__':
	main()
0