結果

問題 No.9008 空白区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー OhGrd11rIuHZyUHOhGrd11rIuHZyUH
提出日時 2020-02-01 17:27:44
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 137 ms / 2,000 ms
コード長 112 bytes
コンパイル時間 87 ms
コンパイル使用メモリ 11,812 KB
実行使用メモリ 22,036 KB
最終ジャッジ日時 2023-10-19 00:08:43
合計ジャッジ時間 2,273 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,068 KB
testcase_01 AC 28 ms
10,068 KB
testcase_02 AC 29 ms
10,068 KB
testcase_03 AC 29 ms
10,068 KB
testcase_04 AC 29 ms
10,068 KB
testcase_05 AC 29 ms
10,080 KB
testcase_06 AC 29 ms
10,212 KB
testcase_07 AC 32 ms
11,180 KB
testcase_08 AC 50 ms
16,172 KB
testcase_09 AC 64 ms
22,036 KB
testcase_10 AC 113 ms
17,848 KB
testcase_11 AC 116 ms
17,928 KB
testcase_12 AC 118 ms
18,032 KB
testcase_13 AC 120 ms
18,128 KB
testcase_14 AC 122 ms
18,500 KB
testcase_15 AC 125 ms
17,984 KB
testcase_16 AC 137 ms
20,560 KB
testcase_17 AC 28 ms
10,068 KB
testcase_18 AC 29 ms
10,068 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
l = input()
split_l = l.split()
int_split_l = [int(i) for i in split_l]
print(sum(int_split_l))
0