結果

問題 No.9008 空白区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー mamo_ICEmamo_ICE
提出日時 2019-04-14 19:49:36
言語 Python2
(2.7.18)
結果
AC  
実行時間 196 ms / 2,000 ms
コード長 62 bytes
コンパイル時間 518 ms
コンパイル使用メモリ 7,152 KB
実行使用メモリ 15,096 KB
最終ジャッジ日時 2023-10-19 12:51:42
合計ジャッジ時間 2,746 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 12 ms
6,464 KB
testcase_01 AC 12 ms
6,464 KB
testcase_02 AC 11 ms
6,464 KB
testcase_03 AC 11 ms
6,464 KB
testcase_04 AC 11 ms
6,464 KB
testcase_05 AC 11 ms
6,468 KB
testcase_06 AC 11 ms
6,544 KB
testcase_07 AC 17 ms
7,456 KB
testcase_08 AC 38 ms
11,580 KB
testcase_09 AC 61 ms
15,096 KB
testcase_10 AC 159 ms
12,804 KB
testcase_11 AC 163 ms
12,880 KB
testcase_12 AC 167 ms
12,964 KB
testcase_13 AC 170 ms
13,040 KB
testcase_14 AC 175 ms
13,380 KB
testcase_15 AC 177 ms
13,456 KB
testcase_16 AC 196 ms
14,376 KB
testcase_17 AC 11 ms
6,464 KB
testcase_18 AC 12 ms
6,464 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

raw_input()
print(sum(list(map(int, raw_input().split(' ')))))
0