結果

問題 No.9009 改行区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー aoymats1aoymats1
提出日時 2021-09-24 21:14:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 247 ms / 3,000 ms
コード長 68 bytes
コンパイル時間 263 ms
コンパイル使用メモリ 87,060 KB
実行使用メモリ 81,236 KB
最終ジャッジ日時 2023-09-18 20:27:47
合計ジャッジ時間 3,984 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
71,220 KB
testcase_01 AC 73 ms
71,008 KB
testcase_02 AC 72 ms
71,480 KB
testcase_03 AC 77 ms
71,156 KB
testcase_04 AC 73 ms
71,060 KB
testcase_05 AC 74 ms
71,200 KB
testcase_06 AC 86 ms
75,528 KB
testcase_07 AC 111 ms
76,796 KB
testcase_08 AC 111 ms
77,412 KB
testcase_09 AC 130 ms
77,804 KB
testcase_10 AC 223 ms
80,372 KB
testcase_11 AC 224 ms
80,224 KB
testcase_12 AC 225 ms
80,700 KB
testcase_13 AC 228 ms
80,380 KB
testcase_14 AC 230 ms
80,744 KB
testcase_15 AC 231 ms
80,832 KB
testcase_16 AC 247 ms
81,236 KB
testcase_17 AC 71 ms
71,528 KB
testcase_18 AC 73 ms
71,356 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = [int(input()) for _ in range(N)]

print(sum(A))
0