結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 10 ms
6,400 KB
testcase_01 AC 9 ms
6,272 KB
testcase_02 AC 10 ms
6,144 KB
testcase_03 AC 10 ms
6,528 KB
testcase_04 AC 9 ms
6,272 KB
testcase_05 AC 10 ms
6,400 KB
testcase_06 AC 15 ms
6,528 KB
testcase_07 AC 57 ms
7,040 KB
testcase_08 AC 253 ms
9,472 KB
testcase_09 AC 478 ms
12,672 KB
testcase_10 AC 1,832 ms
22,360 KB
testcase_11 AC 1,889 ms
22,804 KB
testcase_12 AC 1,999 ms
23,180 KB
testcase_13 AC 1,975 ms
23,456 KB
testcase_14 AC 1,951 ms
23,904 KB
testcase_15 AC 2,093 ms
24,092 KB
testcase_16 AC 2,241 ms
26,204 KB
testcase_17 AC 11 ms
6,400 KB
testcase_18 AC 11 ms
6,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

X = input()
n = [input() for i in range(X)]
c = 0
nx = 0
while c < X:
    nx += n[c]
    c+= 1
print nx
0