結果

問題 No.9009 改行区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー naesiranaesira
提出日時 2023-10-21 02:58:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 214 ms / 3,000 ms
コード長 67 bytes
コンパイル時間 841 ms
コンパイル使用メモリ 81,568 KB
実行使用メモリ 79,544 KB
最終ジャッジ日時 2023-10-21 02:58:20
合計ジャッジ時間 3,526 ms
ジャッジサーバーID
(参考情報)
judge14 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
53,340 KB
testcase_01 AC 35 ms
53,340 KB
testcase_02 AC 35 ms
53,340 KB
testcase_03 AC 35 ms
53,340 KB
testcase_04 AC 36 ms
53,340 KB
testcase_05 AC 40 ms
53,340 KB
testcase_06 AC 45 ms
60,936 KB
testcase_07 AC 58 ms
70,604 KB
testcase_08 AC 77 ms
76,028 KB
testcase_09 AC 91 ms
76,420 KB
testcase_10 AC 174 ms
78,764 KB
testcase_11 AC 179 ms
78,840 KB
testcase_12 AC 199 ms
78,920 KB
testcase_13 AC 189 ms
78,996 KB
testcase_14 AC 214 ms
79,076 KB
testcase_15 AC 191 ms
79,152 KB
testcase_16 AC 203 ms
79,544 KB
testcase_17 AC 36 ms
53,340 KB
testcase_18 AC 34 ms
53,340 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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