結果

問題 No.9009 改行区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー slimslim
提出日時 2017-11-13 18:31:26
言語 Python2
(2.7.18)
結果
AC  
実行時間 2,596 ms / 3,000 ms
コード長 65 bytes
コンパイル時間 292 ms
コンパイル使用メモリ 7,040 KB
実行使用メモリ 26,204 KB
最終ジャッジ日時 2024-12-25 18:00:09
合計ジャッジ時間 16,691 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 10 ms
6,272 KB
testcase_01 AC 10 ms
6,272 KB
testcase_02 AC 10 ms
6,272 KB
testcase_03 AC 10 ms
6,272 KB
testcase_04 AC 11 ms
6,272 KB
testcase_05 AC 12 ms
6,272 KB
testcase_06 AC 17 ms
6,400 KB
testcase_07 AC 56 ms
6,912 KB
testcase_08 AC 255 ms
9,472 KB
testcase_09 AC 502 ms
12,672 KB
testcase_10 AC 1,894 ms
22,236 KB
testcase_11 AC 1,856 ms
22,616 KB
testcase_12 AC 1,962 ms
22,924 KB
testcase_13 AC 2,032 ms
23,328 KB
testcase_14 AC 2,021 ms
23,676 KB
testcase_15 AC 2,305 ms
23,964 KB
testcase_16 AC 2,596 ms
26,204 KB
testcase_17 AC 12 ms
6,272 KB
testcase_18 AC 10 ms
6,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

X = input()
n = [input() for i in range(X)]
nx = sum(n)
print nx
0