結果

問題 No.9009 改行区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー siganaisiganai
提出日時 2022-05-02 20:28:13
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 246 ms / 3,000 ms
コード長 88 bytes
コンパイル時間 471 ms
コンパイル使用メモリ 87,032 KB
実行使用メモリ 77,504 KB
最終ジャッジ日時 2023-09-14 17:30:43
合計ジャッジ時間 4,275 ms
ジャッジサーバーID
(参考情報)
judge14 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 72 ms
71,372 KB
testcase_01 AC 71 ms
71,412 KB
testcase_02 AC 76 ms
71,188 KB
testcase_03 AC 73 ms
71,332 KB
testcase_04 AC 73 ms
71,332 KB
testcase_05 AC 73 ms
71,368 KB
testcase_06 AC 84 ms
75,568 KB
testcase_07 AC 96 ms
76,928 KB
testcase_08 AC 113 ms
77,276 KB
testcase_09 AC 127 ms
77,264 KB
testcase_10 AC 220 ms
77,192 KB
testcase_11 AC 224 ms
77,192 KB
testcase_12 AC 224 ms
77,296 KB
testcase_13 AC 226 ms
77,308 KB
testcase_14 AC 227 ms
77,376 KB
testcase_15 AC 232 ms
77,504 KB
testcase_16 AC 246 ms
77,296 KB
testcase_17 AC 72 ms
71,388 KB
testcase_18 AC 73 ms
71,392 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
ans = 0
for _ in range(n):
    a = int(input())
    ans += a
print(ans)
0