結果

問題 No.9009 改行区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー tomarint2tomarint2
提出日時 2019-04-01 23:47:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 220 ms / 3,000 ms
コード長 73 bytes
コンパイル時間 965 ms
コンパイル使用メモリ 82,116 KB
実行使用メモリ 76,240 KB
最終ジャッジ日時 2024-11-27 05:19:27
合計ジャッジ時間 3,292 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
51,924 KB
testcase_01 AC 38 ms
53,096 KB
testcase_02 AC 38 ms
52,624 KB
testcase_03 AC 36 ms
53,036 KB
testcase_04 AC 38 ms
51,760 KB
testcase_05 AC 43 ms
52,568 KB
testcase_06 AC 51 ms
60,820 KB
testcase_07 AC 81 ms
71,228 KB
testcase_08 AC 81 ms
75,708 KB
testcase_09 AC 99 ms
76,080 KB
testcase_10 AC 193 ms
76,072 KB
testcase_11 AC 196 ms
75,880 KB
testcase_12 AC 199 ms
75,700 KB
testcase_13 AC 201 ms
75,820 KB
testcase_14 AC 202 ms
75,784 KB
testcase_15 AC 206 ms
76,240 KB
testcase_16 AC 220 ms
75,972 KB
testcase_17 AC 36 ms
51,776 KB
testcase_18 AC 36 ms
52,228 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N=int(input())
ans=0
for i in range(N):
    ans+=int(input())
print(ans)
0