結果

問題 No.9008 空白区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー mlihua09mlihua09
提出日時 2020-08-22 11:24:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 161 ms / 2,000 ms
コード長 63 bytes
コンパイル時間 351 ms
コンパイル使用メモリ 87,188 KB
実行使用メモリ 136,876 KB
最終ジャッジ日時 2023-08-05 09:31:02
合計ジャッジ時間 4,103 ms
ジャッジサーバーID
(参考情報)
judge13 / judge11
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 73 ms
71,332 KB
testcase_01 AC 73 ms
71,112 KB
testcase_02 AC 76 ms
71,040 KB
testcase_03 AC 71 ms
71,376 KB
testcase_04 AC 71 ms
71,304 KB
testcase_05 AC 72 ms
71,264 KB
testcase_06 AC 72 ms
71,252 KB
testcase_07 AC 77 ms
76,088 KB
testcase_08 AC 88 ms
82,504 KB
testcase_09 AC 93 ms
89,272 KB
testcase_10 AC 144 ms
121,340 KB
testcase_11 AC 142 ms
121,412 KB
testcase_12 AC 146 ms
121,360 KB
testcase_13 AC 152 ms
128,332 KB
testcase_14 AC 149 ms
128,312 KB
testcase_15 AC 155 ms
128,436 KB
testcase_16 AC 161 ms
136,876 KB
testcase_17 AC 72 ms
71,188 KB
testcase_18 AC 69 ms
71,360 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())



print(sum(list(map(int, input().split()))))
0