結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 11 ms
6,144 KB
testcase_01 AC 11 ms
5,952 KB
testcase_02 AC 11 ms
6,060 KB
testcase_03 AC 11 ms
5,952 KB
testcase_04 AC 11 ms
6,028 KB
testcase_05 AC 12 ms
5,964 KB
testcase_06 AC 16 ms
6,080 KB
testcase_07 AC 60 ms
6,624 KB
testcase_08 AC 251 ms
9,028 KB
testcase_09 AC 481 ms
12,308 KB
testcase_10 AC 1,858 ms
21,760 KB
testcase_11 AC 1,876 ms
22,080 KB
testcase_12 AC 1,925 ms
22,716 KB
testcase_13 AC 1,964 ms
22,896 KB
testcase_14 AC 2,009 ms
23,412 KB
testcase_15 AC 2,040 ms
23,812 KB
testcase_16 AC 2,274 ms
25,660 KB
testcase_17 AC 12 ms
6,176 KB
testcase_18 AC 11 ms
5,964 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