結果

問題 No.9009 改行区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー _kyou_kyou
提出日時 2023-10-21 20:15:56
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 925 ms / 3,000 ms
コード長 89 bytes
コンパイル時間 94 ms
コンパイル使用メモリ 11,656 KB
実行使用メモリ 13,984 KB
最終ジャッジ日時 2023-10-21 20:16:04
合計ジャッジ時間 7,529 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
9,988 KB
testcase_01 AC 26 ms
9,988 KB
testcase_02 AC 26 ms
9,988 KB
testcase_03 AC 27 ms
9,988 KB
testcase_04 AC 25 ms
9,988 KB
testcase_05 AC 28 ms
9,988 KB
testcase_06 AC 29 ms
10,036 KB
testcase_07 AC 48 ms
10,404 KB
testcase_08 AC 125 ms
12,036 KB
testcase_09 AC 238 ms
13,892 KB
testcase_10 AC 726 ms
13,188 KB
testcase_11 AC 786 ms
13,280 KB
testcase_12 AC 793 ms
13,188 KB
testcase_13 AC 821 ms
13,436 KB
testcase_14 AC 826 ms
13,452 KB
testcase_15 AC 832 ms
13,452 KB
testcase_16 AC 925 ms
13,984 KB
testcase_17 AC 27 ms
9,988 KB
testcase_18 AC 28 ms
9,988 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
ans = []
for _ in range(N):
    ans.append(int(input()))
print(sum(ans))
0