結果

問題 No.9009 改行区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー Jonathan MalJonathan Mal
提出日時 2022-08-29 22:13:34
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 226 ms / 3,000 ms
コード長 75 bytes
コンパイル時間 2,333 ms
コンパイル使用メモリ 81,992 KB
実行使用メモリ 79,976 KB
最終ジャッジ日時 2024-11-06 19:21:03
合計ジャッジ時間 3,668 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,376 KB
testcase_01 AC 40 ms
51,748 KB
testcase_02 AC 40 ms
52,216 KB
testcase_03 AC 40 ms
52,860 KB
testcase_04 AC 40 ms
52,088 KB
testcase_05 AC 40 ms
52,884 KB
testcase_06 AC 54 ms
61,336 KB
testcase_07 AC 66 ms
71,344 KB
testcase_08 AC 88 ms
76,272 KB
testcase_09 AC 105 ms
76,908 KB
testcase_10 AC 201 ms
78,884 KB
testcase_11 AC 200 ms
79,132 KB
testcase_12 AC 203 ms
79,284 KB
testcase_13 AC 208 ms
79,204 KB
testcase_14 AC 207 ms
79,324 KB
testcase_15 AC 210 ms
79,400 KB
testcase_16 AC 226 ms
79,976 KB
testcase_17 AC 40 ms
52,272 KB
testcase_18 AC 39 ms
53,488 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
l = [int(input()) for _ in range(N)]
sl = sum(l)
print(sl)
0