結果

問題 No.9009 改行区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー penicillin0penicillin0
提出日時 2019-03-04 17:35:45
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 908 ms / 3,000 ms
コード長 99 bytes
コンパイル時間 79 ms
コンパイル使用メモリ 10,720 KB
実行使用メモリ 12,108 KB
最終ジャッジ日時 2023-09-05 18:29:27
合計ジャッジ時間 7,203 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 15 ms
7,832 KB
testcase_01 AC 15 ms
7,964 KB
testcase_02 AC 15 ms
7,804 KB
testcase_03 AC 15 ms
7,828 KB
testcase_04 AC 15 ms
7,800 KB
testcase_05 AC 16 ms
7,900 KB
testcase_06 AC 18 ms
7,828 KB
testcase_07 AC 34 ms
8,384 KB
testcase_08 AC 112 ms
10,248 KB
testcase_09 AC 211 ms
12,108 KB
testcase_10 AC 737 ms
11,280 KB
testcase_11 AC 746 ms
11,392 KB
testcase_12 AC 755 ms
11,524 KB
testcase_13 AC 789 ms
11,556 KB
testcase_14 AC 813 ms
11,616 KB
testcase_15 AC 822 ms
11,744 KB
testcase_16 AC 908 ms
12,100 KB
testcase_17 AC 17 ms
7,852 KB
testcase_18 AC 16 ms
7,812 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
A_list = []
for i in range(n):
    A_list.append(int(input()))
print(sum(A_list))
0