結果

問題 No.9008 空白区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー yumenomatayumeyumenomatayume
提出日時 2020-03-20 23:53:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 155 ms / 2,000 ms
コード長 62 bytes
コンパイル時間 1,048 ms
コンパイル使用メモリ 86,776 KB
実行使用メモリ 139,468 KB
最終ジャッジ日時 2023-08-22 03:32:47
合計ジャッジ時間 4,566 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
71,216 KB
testcase_01 AC 71 ms
71,312 KB
testcase_02 AC 72 ms
70,984 KB
testcase_03 AC 71 ms
71,336 KB
testcase_04 AC 71 ms
71,112 KB
testcase_05 AC 71 ms
71,108 KB
testcase_06 AC 71 ms
71,028 KB
testcase_07 AC 78 ms
75,904 KB
testcase_08 AC 84 ms
82,736 KB
testcase_09 AC 90 ms
89,196 KB
testcase_10 AC 143 ms
121,348 KB
testcase_11 AC 140 ms
121,552 KB
testcase_12 AC 140 ms
121,680 KB
testcase_13 AC 148 ms
128,488 KB
testcase_14 AC 147 ms
128,724 KB
testcase_15 AC 149 ms
128,528 KB
testcase_16 AC 155 ms
139,468 KB
testcase_17 AC 72 ms
71,116 KB
testcase_18 AC 71 ms
71,332 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n=int(input())
a=list(map(int,input().split()))

print(sum(a))
0