結果

問題 No.9009 改行区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー helical28556801helical28556801
提出日時 2017-04-08 20:49:01
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 777 ms / 3,000 ms
コード長 65 bytes
コンパイル時間 515 ms
コンパイル使用メモリ 10,644 KB
実行使用メモリ 12,156 KB
最終ジャッジ日時 2023-08-26 17:01:18
合計ジャッジ時間 6,088 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 12 ms
7,784 KB
testcase_01 AC 13 ms
7,916 KB
testcase_02 AC 13 ms
7,860 KB
testcase_03 AC 13 ms
7,868 KB
testcase_04 AC 13 ms
7,840 KB
testcase_05 AC 14 ms
7,852 KB
testcase_06 AC 15 ms
7,864 KB
testcase_07 AC 30 ms
8,268 KB
testcase_08 AC 92 ms
10,236 KB
testcase_09 AC 170 ms
12,156 KB
testcase_10 AC 626 ms
11,132 KB
testcase_11 AC 624 ms
11,464 KB
testcase_12 AC 640 ms
11,416 KB
testcase_13 AC 641 ms
11,544 KB
testcase_14 AC 659 ms
11,412 KB
testcase_15 AC 695 ms
11,864 KB
testcase_16 AC 777 ms
12,152 KB
testcase_17 AC 13 ms
7,804 KB
testcase_18 AC 13 ms
7,860 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())

A=[int(input()) for i in range(N)]

print(sum(A))
0