結果

問題 No.81 すべて足すだけの簡単なお仕事です。
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2022-01-19 21:44:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 224 ms / 5,000 ms
コード長 117 bytes
コンパイル時間 475 ms
コンパイル使用メモリ 87,260 KB
実行使用メモリ 91,172 KB
最終ジャッジ日時 2023-09-29 23:01:11
合計ジャッジ時間 8,458 ms
ジャッジサーバーID
(参考情報)
judge13 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 213 ms
88,964 KB
testcase_01 AC 214 ms
88,920 KB
testcase_02 AC 214 ms
89,052 KB
testcase_03 AC 212 ms
88,916 KB
testcase_04 AC 216 ms
88,884 KB
testcase_05 AC 212 ms
88,816 KB
testcase_06 AC 214 ms
88,888 KB
testcase_07 AC 215 ms
89,080 KB
testcase_08 AC 216 ms
88,892 KB
testcase_09 AC 222 ms
91,172 KB
testcase_10 AC 211 ms
88,972 KB
testcase_11 AC 211 ms
88,904 KB
testcase_12 AC 210 ms
88,888 KB
testcase_13 AC 211 ms
89,132 KB
testcase_14 AC 211 ms
88,896 KB
testcase_15 AC 224 ms
89,060 KB
testcase_16 AC 217 ms
88,860 KB
testcase_17 AC 212 ms
88,916 KB
testcase_18 AC 215 ms
89,056 KB
testcase_19 AC 212 ms
88,916 KB
testcase_20 AC 212 ms
89,080 KB
testcase_21 AC 213 ms
88,888 KB
testcase_22 AC 210 ms
89,052 KB
testcase_23 AC 216 ms
88,944 KB
testcase_24 AC 214 ms
88,984 KB
testcase_25 AC 209 ms
89,152 KB
testcase_26 AC 212 ms
88,916 KB
testcase_27 AC 213 ms
89,072 KB
testcase_28 AC 212 ms
88,824 KB
testcase_29 AC 212 ms
89,100 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from decimal import Decimal
n = int(input())
l = [Decimal(input()) for i in range(n)]
print("{:.10f}".format(sum(l)))
0