結果

問題 No.9009 改行区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー zimphazimpha
提出日時 2017-12-10 23:53:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 212 ms / 3,000 ms
コード長 61 bytes
コンパイル時間 295 ms
コンパイル使用メモリ 86,996 KB
実行使用メモリ 80,968 KB
最終ジャッジ日時 2023-08-26 18:09:23
合計ジャッジ時間 3,912 ms
ジャッジサーバーID
(参考情報)
judge14 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 66 ms
71,188 KB
testcase_01 AC 64 ms
71,232 KB
testcase_02 AC 65 ms
71,332 KB
testcase_03 AC 65 ms
71,384 KB
testcase_04 AC 68 ms
71,340 KB
testcase_05 AC 65 ms
71,356 KB
testcase_06 AC 74 ms
75,340 KB
testcase_07 AC 111 ms
76,500 KB
testcase_08 AC 97 ms
77,564 KB
testcase_09 AC 114 ms
78,076 KB
testcase_10 AC 201 ms
80,192 KB
testcase_11 AC 201 ms
80,600 KB
testcase_12 AC 197 ms
80,580 KB
testcase_13 AC 201 ms
80,536 KB
testcase_14 AC 201 ms
80,484 KB
testcase_15 AC 204 ms
80,916 KB
testcase_16 AC 212 ms
80,968 KB
testcase_17 AC 60 ms
71,500 KB
testcase_18 AC 60 ms
71,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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