結果
問題 |
No.289 数字を全て足そう
|
ユーザー |
![]() |
提出日時 | 2018-02-19 19:08:46 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
AC
|
実行時間 | 42 ms / 1,000 ms |
コード長 | 226 bytes |
コンパイル時間 | 146 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 11,776 KB |
最終ジャッジ日時 | 2024-07-08 11:15:46 |
合計ジャッジ時間 | 1,807 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 21 |
ソースコード
#cording: utf-8 import re s = list(input()) pattern = r'([+-]?[0-9]+\.?[0-9]*)' num = [] for i in s: a = re.findall(pattern, i) if len(a) != 0: num.append(a) s = 0 for i in num: s = s + int(i[0]) print(s)