結果

問題 No.289 数字を全て足そう
ユーザー Necofuryai
提出日時 2021-04-23 13:54:12
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 120 bytes
コンパイル時間 139 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 64,512 KB
最終ジャッジ日時 2024-07-04 07:05:58
合計ジャッジ時間 1,886 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
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 += int(w)
print(s)
0