結果

問題 No.289 数字を全て足そう
ユーザー Necofuryai
提出日時 2021-04-23 14:02:22
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 123 bytes
コンパイル時間 160 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 64,512 KB
最終ジャッジ日時 2024-07-04 07:06:33
合計ジャッジ時間 1,795 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 3
other AC * 2 WA * 18 RE * 1
権限があれば一括ダウンロードができます

ソースコード

diff #

words = list(map(str, input().split()))
s = 0
for w in words:
    if w.isdecimal() == True:
        s = s + int(w)
print(s)
0