結果

問題 No.9008 空白区切りで与えられる数値データの合計値を求める(テスト用)
ユーザー disneyresidentsdisneyresidents
提出日時 2020-10-23 02:10:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 161 ms / 2,000 ms
コード長 51 bytes
コンパイル時間 310 ms
コンパイル使用メモリ 86,900 KB
実行使用メモリ 136,588 KB
最終ジャッジ日時 2023-09-28 15:00:33
合計ジャッジ時間 3,490 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 70 ms
71,156 KB
testcase_01 AC 71 ms
71,160 KB
testcase_02 AC 74 ms
71,412 KB
testcase_03 AC 69 ms
71,448 KB
testcase_04 AC 71 ms
71,420 KB
testcase_05 AC 69 ms
71,172 KB
testcase_06 AC 69 ms
71,420 KB
testcase_07 AC 74 ms
75,980 KB
testcase_08 AC 85 ms
82,580 KB
testcase_09 AC 91 ms
89,468 KB
testcase_10 AC 147 ms
121,472 KB
testcase_11 AC 148 ms
121,324 KB
testcase_12 AC 149 ms
121,456 KB
testcase_13 AC 157 ms
128,628 KB
testcase_14 AC 155 ms
128,496 KB
testcase_15 AC 154 ms
128,592 KB
testcase_16 AC 161 ms
136,588 KB
testcase_17 AC 71 ms
71,156 KB
testcase_18 AC 72 ms
71,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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