結果

問題 No.289 数字を全て足そう
ユーザー kawacchu
提出日時 2019-03-22 00:27:13
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
RE  
実行時間 -
コード長 107 bytes
コンパイル時間 87 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 10,752 KB
最終ジャッジ日時 2024-09-19 02:11:53
合計ジャッジ時間 1,780 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1 RE * 2
other AC * 2 RE * 19
権限があれば一括ダウンロードができます

ソースコード

diff #

S = input()
ans = 0
for s in S :
    if int(s) in [i for i in range(10)] :
        ans += int(s)
print(ans)
0