結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 10 ms
6,400 KB
testcase_01 AC 10 ms
6,400 KB
testcase_02 AC 10 ms
6,272 KB
testcase_03 AC 10 ms
6,400 KB
testcase_04 AC 9 ms
6,272 KB
testcase_05 AC 10 ms
6,272 KB
testcase_06 AC 14 ms
6,400 KB
testcase_07 AC 57 ms
7,040 KB
testcase_08 AC 247 ms
9,472 KB
testcase_09 AC 479 ms
12,672 KB
testcase_10 AC 1,835 ms
22,360 KB
testcase_11 AC 1,955 ms
22,692 KB
testcase_12 AC 1,928 ms
23,052 KB
testcase_13 AC 1,993 ms
23,460 KB
testcase_14 AC 2,023 ms
23,780 KB
testcase_15 AC 2,021 ms
24,224 KB
testcase_16 AC 2,307 ms
26,072 KB
testcase_17 AC 10 ms
6,272 KB
testcase_18 AC 12 ms
6,144 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