結果

問題 No.9009 改行区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー Takeky0Takeky0
提出日時 2021-02-10 20:47:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 244 ms / 3,000 ms
コード長 66 bytes
コンパイル時間 550 ms
コンパイル使用メモリ 86,952 KB
実行使用メモリ 77,260 KB
最終ジャッジ日時 2023-09-22 16:40:37
合計ジャッジ時間 4,103 ms
ジャッジサーバーID
(参考情報)
judge12 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
71,216 KB
testcase_01 AC 71 ms
71,068 KB
testcase_02 AC 71 ms
71,068 KB
testcase_03 AC 71 ms
71,340 KB
testcase_04 AC 71 ms
71,320 KB
testcase_05 AC 72 ms
71,392 KB
testcase_06 AC 82 ms
75,264 KB
testcase_07 AC 94 ms
76,340 KB
testcase_08 AC 110 ms
77,076 KB
testcase_09 AC 124 ms
77,072 KB
testcase_10 AC 214 ms
77,260 KB
testcase_11 AC 217 ms
77,156 KB
testcase_12 AC 219 ms
77,212 KB
testcase_13 AC 225 ms
77,248 KB
testcase_14 AC 225 ms
76,940 KB
testcase_15 AC 227 ms
77,188 KB
testcase_16 AC 244 ms
77,104 KB
testcase_17 AC 70 ms
71,076 KB
testcase_18 AC 71 ms
70,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
k=0
for i in range(n):
    k+=int(input())
print(k)
0