結果

問題 No.9009 改行区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー hfffdde_ekurosuhfffdde_ekurosu
提出日時 2019-08-24 16:18:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 249 ms / 3,000 ms
コード長 83 bytes
コンパイル時間 357 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 99,912 KB
最終ジャッジ日時 2024-04-22 13:20:13
合計ジャッジ時間 3,750 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,584 KB
testcase_01 AC 41 ms
51,584 KB
testcase_02 AC 39 ms
51,584 KB
testcase_03 AC 38 ms
51,584 KB
testcase_04 AC 42 ms
51,328 KB
testcase_05 AC 39 ms
51,968 KB
testcase_06 AC 51 ms
60,416 KB
testcase_07 AC 70 ms
71,168 KB
testcase_08 AC 92 ms
78,080 KB
testcase_09 AC 110 ms
79,356 KB
testcase_10 AC 210 ms
92,028 KB
testcase_11 AC 218 ms
92,032 KB
testcase_12 AC 219 ms
92,284 KB
testcase_13 AC 227 ms
95,228 KB
testcase_14 AC 227 ms
95,420 KB
testcase_15 AC 236 ms
95,836 KB
testcase_16 AC 249 ms
99,912 KB
testcase_17 AC 38 ms
51,756 KB
testcase_18 AC 37 ms
51,584 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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