結果

問題 No.9009 改行区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー K5h1n0K5h1n0
提出日時 2023-11-30 05:23:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 268 ms / 3,000 ms
コード長 83 bytes
コンパイル時間 288 ms
コンパイル使用メモリ 81,700 KB
実行使用メモリ 99,544 KB
最終ジャッジ日時 2023-11-30 05:23:33
合計ジャッジ時間 4,386 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
53,332 KB
testcase_01 AC 44 ms
53,332 KB
testcase_02 AC 40 ms
53,332 KB
testcase_03 AC 40 ms
53,332 KB
testcase_04 AC 44 ms
53,332 KB
testcase_05 AC 42 ms
53,332 KB
testcase_06 AC 56 ms
60,988 KB
testcase_07 AC 71 ms
72,792 KB
testcase_08 AC 89 ms
78,168 KB
testcase_09 AC 112 ms
79,192 KB
testcase_10 AC 231 ms
92,124 KB
testcase_11 AC 232 ms
92,252 KB
testcase_12 AC 243 ms
92,380 KB
testcase_13 AC 245 ms
95,704 KB
testcase_14 AC 247 ms
95,592 KB
testcase_15 AC 250 ms
95,596 KB
testcase_16 AC 268 ms
99,544 KB
testcase_17 AC 45 ms
53,332 KB
testcase_18 AC 40 ms
53,332 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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