結果

問題 No.9008 空白区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー ぬんぬん
提出日時 2024-12-23 08:31:24
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 350 ms / 2,000 ms
コード長 127 bytes
コンパイル時間 244 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 145,128 KB
最終ジャッジ日時 2024-12-23 08:31:30
合計ジャッジ時間 4,382 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 66 ms
62,592 KB
testcase_01 AC 65 ms
62,592 KB
testcase_02 AC 65 ms
62,720 KB
testcase_03 AC 66 ms
62,464 KB
testcase_04 AC 65 ms
62,336 KB
testcase_05 AC 70 ms
62,848 KB
testcase_06 AC 70 ms
64,512 KB
testcase_07 AC 87 ms
77,312 KB
testcase_08 AC 120 ms
83,384 KB
testcase_09 AC 158 ms
87,276 KB
testcase_10 AC 286 ms
129,408 KB
testcase_11 AC 293 ms
129,496 KB
testcase_12 AC 306 ms
130,968 KB
testcase_13 AC 335 ms
134,572 KB
testcase_14 AC 314 ms
136,504 KB
testcase_15 AC 332 ms
136,368 KB
testcase_16 AC 350 ms
145,128 KB
testcase_17 AC 70 ms
62,464 KB
testcase_18 AC 67 ms
62,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import re
first = int(input())
second = input()
list = re.findall(r'\d+', second)
list_int = map(int,list)
print(sum(list_int))
0