結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 14 ms
7,764 KB
testcase_01 AC 14 ms
7,960 KB
testcase_02 AC 14 ms
7,796 KB
testcase_03 AC 13 ms
7,692 KB
testcase_04 AC 13 ms
7,696 KB
testcase_05 AC 14 ms
7,904 KB
testcase_06 AC 14 ms
7,800 KB
testcase_07 AC 31 ms
8,900 KB
testcase_08 AC 99 ms
11,772 KB
testcase_09 AC 201 ms
15,152 KB
testcase_10 AC 676 ms
20,344 KB
testcase_11 AC 671 ms
20,752 KB
testcase_12 AC 720 ms
21,112 KB
testcase_13 AC 692 ms
21,608 KB
testcase_14 AC 721 ms
13,648 KB
testcase_15 AC 743 ms
13,628 KB
testcase_16 AC 808 ms
12,080 KB
testcase_17 AC 16 ms
7,764 KB
testcase_18 AC 14 ms
7,756 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
lista = [input() for i in range(n)]
fab = 0
for i in range(n):
	fab += int(lista[i])
print(fab)
0