結果

問題 No.9009 改行区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー beetbeet
提出日時 2020-03-10 17:30:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 202 ms / 3,000 ms
コード長 62 bytes
コンパイル時間 320 ms
コンパイル使用メモリ 82,652 KB
実行使用メモリ 79,996 KB
最終ジャッジ日時 2024-04-27 18:44:37
合計ジャッジ時間 2,988 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
53,896 KB
testcase_01 AC 31 ms
52,404 KB
testcase_02 AC 31 ms
52,700 KB
testcase_03 AC 31 ms
52,080 KB
testcase_04 AC 31 ms
52,376 KB
testcase_05 AC 38 ms
52,216 KB
testcase_06 AC 42 ms
61,116 KB
testcase_07 AC 53 ms
70,820 KB
testcase_08 AC 69 ms
76,220 KB
testcase_09 AC 87 ms
76,872 KB
testcase_10 AC 171 ms
79,212 KB
testcase_11 AC 172 ms
79,336 KB
testcase_12 AC 174 ms
79,240 KB
testcase_13 AC 177 ms
79,372 KB
testcase_14 AC 175 ms
79,268 KB
testcase_15 AC 176 ms
79,844 KB
testcase_16 AC 202 ms
79,996 KB
testcase_17 AC 33 ms
52,052 KB
testcase_18 AC 31 ms
52,276 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
print(sum([int(input()) for _ in range(N)]))
0