結果

問題 No.9009 改行区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー ohanaohana
提出日時 2023-09-25 16:48:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 248 ms / 3,000 ms
コード長 62 bytes
コンパイル時間 567 ms
コンパイル使用メモリ 86,992 KB
実行使用メモリ 80,904 KB
最終ジャッジ日時 2023-09-25 16:48:51
合計ジャッジ時間 4,429 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 74 ms
71,012 KB
testcase_01 AC 74 ms
71,096 KB
testcase_02 AC 76 ms
71,156 KB
testcase_03 AC 79 ms
71,164 KB
testcase_04 AC 73 ms
71,116 KB
testcase_05 AC 74 ms
71,268 KB
testcase_06 AC 90 ms
75,024 KB
testcase_07 AC 103 ms
76,532 KB
testcase_08 AC 117 ms
77,580 KB
testcase_09 AC 130 ms
77,592 KB
testcase_10 AC 224 ms
80,240 KB
testcase_11 AC 230 ms
80,272 KB
testcase_12 AC 226 ms
80,480 KB
testcase_13 AC 237 ms
80,352 KB
testcase_14 AC 238 ms
80,380 KB
testcase_15 AC 235 ms
80,712 KB
testcase_16 AC 248 ms
80,904 KB
testcase_17 AC 71 ms
71,048 KB
testcase_18 AC 73 ms
71,188 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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