結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
6,272 KB
testcase_01 AC 11 ms
6,400 KB
testcase_02 AC 11 ms
6,272 KB
testcase_03 AC 11 ms
6,144 KB
testcase_04 AC 11 ms
6,272 KB
testcase_05 AC 12 ms
6,272 KB
testcase_06 AC 16 ms
6,400 KB
testcase_07 AC 61 ms
6,912 KB
testcase_08 AC 261 ms
9,344 KB
testcase_09 AC 491 ms
12,672 KB
testcase_10 AC 1,897 ms
22,232 KB
testcase_11 AC 1,892 ms
22,680 KB
testcase_12 AC 2,000 ms
23,184 KB
testcase_13 AC 1,994 ms
23,584 KB
testcase_14 AC 2,069 ms
23,652 KB
testcase_15 AC 2,076 ms
24,224 KB
testcase_16 AC 2,387 ms
26,328 KB
testcase_17 AC 12 ms
6,272 KB
testcase_18 AC 11 ms
6,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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