結果

問題 No.9009 改行区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー 163x bee.163x bee.
提出日時 2021-07-15 17:55:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 249 ms / 3,000 ms
コード長 122 bytes
コンパイル時間 252 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 92,748 KB
最終ジャッジ日時 2024-07-04 18:40:11
合計ジャッジ時間 3,304 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,328 KB
testcase_01 AC 38 ms
51,712 KB
testcase_02 AC 36 ms
51,584 KB
testcase_03 AC 37 ms
51,456 KB
testcase_04 AC 36 ms
51,584 KB
testcase_05 AC 38 ms
51,968 KB
testcase_06 AC 51 ms
60,544 KB
testcase_07 AC 76 ms
71,424 KB
testcase_08 AC 86 ms
78,336 KB
testcase_09 AC 103 ms
79,488 KB
testcase_10 AC 218 ms
89,468 KB
testcase_11 AC 207 ms
89,852 KB
testcase_12 AC 214 ms
89,712 KB
testcase_13 AC 211 ms
89,728 KB
testcase_14 AC 221 ms
92,316 KB
testcase_15 AC 227 ms
92,424 KB
testcase_16 AC 249 ms
92,748 KB
testcase_17 AC 40 ms
51,584 KB
testcase_18 AC 40 ms
51,456 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
mylist = []
for i in range(N):
    A = int(input())
    if A:
        mylist.append(A)
print(sum(mylist))
0