結果

問題 No.81 すべて足すだけの簡単なお仕事です。
ユーザー convexineqconvexineq
提出日時 2021-02-09 04:34:31
言語 PyPy3
(7.3.13)
結果
AC  
実行時間 246 ms / 5,000 ms
コード長 107 bytes
コンパイル時間 305 ms
コンパイル使用メモリ 87,024 KB
実行使用メモリ 90,704 KB
最終ジャッジ日時 2023-09-29 22:58:48
合計ジャッジ時間 8,999 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 235 ms
88,716 KB
testcase_01 AC 230 ms
88,864 KB
testcase_02 AC 232 ms
88,776 KB
testcase_03 AC 228 ms
88,872 KB
testcase_04 AC 234 ms
89,004 KB
testcase_05 AC 229 ms
88,900 KB
testcase_06 AC 236 ms
88,776 KB
testcase_07 AC 239 ms
88,720 KB
testcase_08 AC 239 ms
88,812 KB
testcase_09 AC 246 ms
90,704 KB
testcase_10 AC 235 ms
89,132 KB
testcase_11 AC 236 ms
88,868 KB
testcase_12 AC 232 ms
89,024 KB
testcase_13 AC 234 ms
88,712 KB
testcase_14 AC 235 ms
88,916 KB
testcase_15 AC 235 ms
89,060 KB
testcase_16 AC 232 ms
89,032 KB
testcase_17 AC 234 ms
89,112 KB
testcase_18 AC 239 ms
88,664 KB
testcase_19 AC 238 ms
89,128 KB
testcase_20 AC 235 ms
88,876 KB
testcase_21 AC 236 ms
88,712 KB
testcase_22 AC 239 ms
88,892 KB
testcase_23 AC 244 ms
89,064 KB
testcase_24 AC 243 ms
88,824 KB
testcase_25 AC 237 ms
88,888 KB
testcase_26 AC 231 ms
88,780 KB
testcase_27 AC 234 ms
88,904 KB
testcase_28 AC 232 ms
88,764 KB
testcase_29 AC 236 ms
89,112 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from decimal import Decimal
n = int(input())
x = sum(Decimal(input()) for _ in range(n))
print(f"{x:.10f}")
0