結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 10 ms
6,100 KB
testcase_01 AC 11 ms
6,092 KB
testcase_02 AC 9 ms
6,204 KB
testcase_03 AC 9 ms
6,152 KB
testcase_04 AC 10 ms
6,036 KB
testcase_05 AC 9 ms
6,048 KB
testcase_06 AC 16 ms
6,336 KB
testcase_07 AC 53 ms
6,660 KB
testcase_08 AC 216 ms
9,068 KB
testcase_09 AC 421 ms
12,368 KB
testcase_10 AC 1,625 ms
21,824 KB
testcase_11 AC 1,744 ms
22,008 KB
testcase_12 AC 1,707 ms
22,704 KB
testcase_13 AC 1,814 ms
22,988 KB
testcase_14 AC 1,805 ms
23,448 KB
testcase_15 AC 1,869 ms
23,900 KB
testcase_16 AC 2,065 ms
25,712 KB
testcase_17 AC 11 ms
6,036 KB
testcase_18 AC 11 ms
5,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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