結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 13 ms
7,852 KB
testcase_01 AC 13 ms
7,880 KB
testcase_02 AC 13 ms
7,832 KB
testcase_03 AC 13 ms
7,832 KB
testcase_04 AC 13 ms
7,920 KB
testcase_05 AC 13 ms
7,752 KB
testcase_06 AC 14 ms
7,808 KB
testcase_07 AC 32 ms
8,448 KB
testcase_08 AC 106 ms
10,220 KB
testcase_09 AC 194 ms
11,972 KB
testcase_10 AC 689 ms
11,012 KB
testcase_11 AC 710 ms
11,496 KB
testcase_12 AC 720 ms
11,552 KB
testcase_13 AC 774 ms
11,700 KB
testcase_14 AC 758 ms
11,632 KB
testcase_15 AC 776 ms
11,660 KB
testcase_16 AC 864 ms
12,068 KB
testcase_17 AC 14 ms
7,776 KB
testcase_18 AC 14 ms
7,768 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

input_first = int(input())
inputs_after_first = []
for i in range(0, input_first):
    inputs_after_first.append(int(input()))
total = 0
for number in inputs_after_first:
    total += number
print(total)
0