結果

問題 No.81 すべて足すだけの簡単なお仕事です。
ユーザー kohei2019kohei2019
提出日時 2021-05-22 15:10:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 240 ms / 5,000 ms
コード長 170 bytes
コンパイル時間 286 ms
コンパイル使用メモリ 86,900 KB
実行使用メモリ 91,080 KB
最終ジャッジ日時 2023-09-29 22:59:47
合計ジャッジ時間 8,786 ms
ジャッジサーバーID
(参考情報)
judge14 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 229 ms
88,812 KB
testcase_01 AC 229 ms
89,120 KB
testcase_02 AC 228 ms
89,072 KB
testcase_03 AC 231 ms
89,028 KB
testcase_04 AC 236 ms
89,028 KB
testcase_05 AC 236 ms
88,828 KB
testcase_06 AC 239 ms
89,172 KB
testcase_07 AC 236 ms
89,056 KB
testcase_08 AC 238 ms
89,088 KB
testcase_09 AC 238 ms
91,080 KB
testcase_10 AC 231 ms
88,884 KB
testcase_11 AC 231 ms
89,060 KB
testcase_12 AC 235 ms
88,912 KB
testcase_13 AC 230 ms
88,888 KB
testcase_14 AC 230 ms
88,908 KB
testcase_15 AC 235 ms
88,892 KB
testcase_16 AC 235 ms
88,816 KB
testcase_17 AC 232 ms
89,152 KB
testcase_18 AC 240 ms
88,888 KB
testcase_19 AC 238 ms
89,060 KB
testcase_20 AC 231 ms
89,048 KB
testcase_21 AC 232 ms
88,868 KB
testcase_22 AC 231 ms
88,880 KB
testcase_23 AC 237 ms
89,152 KB
testcase_24 AC 233 ms
89,196 KB
testcase_25 AC 229 ms
89,172 KB
testcase_26 AC 224 ms
89,100 KB
testcase_27 AC 232 ms
89,100 KB
testcase_28 AC 235 ms
89,160 KB
testcase_29 AC 230 ms
89,060 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from decimal import Decimal
N = int(input())
lsA = [input() for i in range(N)]
ans = Decimal(0)
for i in range(N):
    ans += Decimal(lsA[i])
print('{:.10f}'.format(ans))
0