結果

問題 No.9009 改行区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー tera_3939tera_3939
提出日時 2017-06-23 09:33:38
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 877 ms / 3,000 ms
コード長 90 bytes
コンパイル時間 235 ms
コンパイル使用メモリ 10,584 KB
実行使用メモリ 12,216 KB
最終ジャッジ日時 2023-08-26 17:10:35
合計ジャッジ時間 7,070 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 13 ms
7,776 KB
testcase_01 AC 14 ms
7,856 KB
testcase_02 AC 13 ms
7,852 KB
testcase_03 AC 13 ms
7,864 KB
testcase_04 AC 14 ms
7,920 KB
testcase_05 AC 14 ms
7,784 KB
testcase_06 AC 16 ms
7,928 KB
testcase_07 AC 33 ms
8,336 KB
testcase_08 AC 109 ms
10,156 KB
testcase_09 AC 194 ms
12,192 KB
testcase_10 AC 697 ms
11,196 KB
testcase_11 AC 708 ms
11,484 KB
testcase_12 AC 709 ms
11,512 KB
testcase_13 AC 767 ms
11,688 KB
testcase_14 AC 761 ms
11,452 KB
testcase_15 AC 770 ms
11,648 KB
testcase_16 AC 877 ms
12,216 KB
testcase_17 AC 14 ms
7,772 KB
testcase_18 AC 14 ms
7,848 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

ns = list()
n = int(input())
for i in range(n):
    ns.append(int(input()))
print(sum(ns))
0