結果

問題 No.9009 改行区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー momoyuumomoyuu
提出日時 2022-08-22 00:06:21
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 222 ms / 3,000 ms
コード長 107 bytes
コンパイル時間 181 ms
コンパイル使用メモリ 81,972 KB
実行使用メモリ 80,200 KB
最終ジャッジ日時 2024-04-18 13:14:54
合計ジャッジ時間 3,088 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,704 KB
testcase_01 AC 37 ms
52,488 KB
testcase_02 AC 35 ms
52,336 KB
testcase_03 AC 41 ms
52,624 KB
testcase_04 AC 36 ms
52,436 KB
testcase_05 AC 37 ms
53,212 KB
testcase_06 AC 46 ms
61,460 KB
testcase_07 AC 56 ms
70,964 KB
testcase_08 AC 80 ms
76,772 KB
testcase_09 AC 98 ms
76,744 KB
testcase_10 AC 195 ms
79,208 KB
testcase_11 AC 188 ms
79,352 KB
testcase_12 AC 196 ms
79,412 KB
testcase_13 AC 199 ms
79,632 KB
testcase_14 AC 199 ms
79,436 KB
testcase_15 AC 202 ms
79,824 KB
testcase_16 AC 222 ms
80,200 KB
testcase_17 AC 37 ms
53,096 KB
testcase_18 AC 37 ms
51,888 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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