結果

問題 No.9009 改行区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー tamagramtamagram
提出日時 2020-11-11 15:46:36
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 824 ms / 3,000 ms
コード長 67 bytes
コンパイル時間 111 ms
コンパイル使用メモリ 10,684 KB
実行使用メモリ 12,180 KB
最終ジャッジ日時 2023-09-30 00:34:05
合計ジャッジ時間 6,932 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 15 ms
7,792 KB
testcase_01 AC 15 ms
7,812 KB
testcase_02 AC 15 ms
7,740 KB
testcase_03 AC 16 ms
7,792 KB
testcase_04 AC 15 ms
7,780 KB
testcase_05 AC 15 ms
7,716 KB
testcase_06 AC 17 ms
7,720 KB
testcase_07 AC 33 ms
8,192 KB
testcase_08 AC 103 ms
10,168 KB
testcase_09 AC 187 ms
12,164 KB
testcase_10 AC 650 ms
11,196 KB
testcase_11 AC 684 ms
11,368 KB
testcase_12 AC 692 ms
11,400 KB
testcase_13 AC 714 ms
11,524 KB
testcase_14 AC 724 ms
11,384 KB
testcase_15 AC 748 ms
11,652 KB
testcase_16 AC 824 ms
12,180 KB
testcase_17 AC 16 ms
7,844 KB
testcase_18 AC 15 ms
7,948 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = [int(input()) for _ in range(n)]
print(sum(a))
0