結果

問題 No.9008 空白区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー eiji1000eiji1000
提出日時 2018-12-23 17:36:23
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 190 ms / 2,000 ms
コード長 133 bytes
コンパイル時間 563 ms
コンパイル使用メモリ 11,736 KB
実行使用メモリ 22,052 KB
最終ジャッジ日時 2023-10-26 02:31:57
合計ジャッジ時間 2,590 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,080 KB
testcase_01 AC 27 ms
10,080 KB
testcase_02 AC 29 ms
10,080 KB
testcase_03 AC 26 ms
10,080 KB
testcase_04 AC 26 ms
10,080 KB
testcase_05 AC 27 ms
10,088 KB
testcase_06 AC 27 ms
10,220 KB
testcase_07 AC 32 ms
11,200 KB
testcase_08 AC 53 ms
16,188 KB
testcase_09 AC 73 ms
22,052 KB
testcase_10 AC 153 ms
17,872 KB
testcase_11 AC 156 ms
17,952 KB
testcase_12 AC 162 ms
18,056 KB
testcase_13 AC 167 ms
18,152 KB
testcase_14 AC 167 ms
18,520 KB
testcase_15 AC 174 ms
18,000 KB
testcase_16 AC 190 ms
20,584 KB
testcase_17 AC 28 ms
10,080 KB
testcase_18 AC 27 ms
10,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

f = input()
s = input()

split_s = s.split()
s_list = [int(i) for i in split_s]
souwa = 0
for i in s_list:
    souwa +=i
print(souwa)
0