結果

問題 No.9009 改行区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー ThinkingStoneThinkingStone
提出日時 2022-07-15 19:36:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 244 ms / 3,000 ms
コード長 68 bytes
コンパイル時間 1,217 ms
コンパイル使用メモリ 86,852 KB
実行使用メモリ 80,940 KB
最終ジャッジ日時 2023-09-09 22:05:47
合計ジャッジ時間 4,977 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
71,296 KB
testcase_01 AC 71 ms
71,156 KB
testcase_02 AC 70 ms
71,088 KB
testcase_03 AC 71 ms
70,836 KB
testcase_04 AC 70 ms
71,184 KB
testcase_05 AC 72 ms
71,304 KB
testcase_06 AC 83 ms
75,216 KB
testcase_07 AC 99 ms
76,516 KB
testcase_08 AC 110 ms
77,640 KB
testcase_09 AC 125 ms
77,624 KB
testcase_10 AC 218 ms
80,136 KB
testcase_11 AC 219 ms
80,296 KB
testcase_12 AC 223 ms
80,208 KB
testcase_13 AC 227 ms
80,220 KB
testcase_14 AC 228 ms
80,632 KB
testcase_15 AC 230 ms
80,740 KB
testcase_16 AC 244 ms
80,940 KB
testcase_17 AC 71 ms
71,180 KB
testcase_18 AC 70 ms
71,184 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = [int(input()) for _ in range(n)]

print(sum(a))
0