結果

問題 No.9009 改行区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー なえしらなえしら
提出日時 2023-10-21 02:58:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 220 ms / 3,000 ms
コード長 67 bytes
コンパイル時間 329 ms
コンパイル使用メモリ 82,396 KB
実行使用メモリ 79,860 KB
最終ジャッジ日時 2024-09-21 03:58:37
合計ジャッジ時間 3,256 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,608 KB
testcase_01 AC 35 ms
52,040 KB
testcase_02 AC 33 ms
51,952 KB
testcase_03 AC 34 ms
52,416 KB
testcase_04 AC 35 ms
52,676 KB
testcase_05 AC 36 ms
53,292 KB
testcase_06 AC 50 ms
62,344 KB
testcase_07 AC 58 ms
70,904 KB
testcase_08 AC 77 ms
76,236 KB
testcase_09 AC 95 ms
76,908 KB
testcase_10 AC 183 ms
78,960 KB
testcase_11 AC 185 ms
79,068 KB
testcase_12 AC 193 ms
79,208 KB
testcase_13 AC 190 ms
79,184 KB
testcase_14 AC 201 ms
79,320 KB
testcase_15 AC 195 ms
79,460 KB
testcase_16 AC 220 ms
79,860 KB
testcase_17 AC 34 ms
52,268 KB
testcase_18 AC 34 ms
52,500 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = [int(input()) for i in range(N)]
print(sum(A))
0