結果

問題 No.81 すべて足すだけの簡単なお仕事です。
ユーザー YCescaYCesca
提出日時 2016-09-04 03:14:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 215 ms / 5,000 ms
コード長 116 bytes
コンパイル時間 302 ms
コンパイル使用メモリ 87,048 KB
実行使用メモリ 90,864 KB
最終ジャッジ日時 2023-09-29 22:34:37
合計ジャッジ時間 8,782 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 215 ms
88,812 KB
testcase_01 AC 198 ms
88,980 KB
testcase_02 AC 203 ms
88,728 KB
testcase_03 AC 187 ms
88,956 KB
testcase_04 AC 207 ms
88,688 KB
testcase_05 AC 198 ms
88,840 KB
testcase_06 AC 210 ms
88,948 KB
testcase_07 AC 195 ms
88,716 KB
testcase_08 AC 208 ms
88,944 KB
testcase_09 AC 214 ms
90,864 KB
testcase_10 AC 206 ms
88,832 KB
testcase_11 AC 191 ms
88,748 KB
testcase_12 AC 203 ms
88,888 KB
testcase_13 AC 190 ms
88,932 KB
testcase_14 AC 203 ms
89,048 KB
testcase_15 AC 192 ms
89,004 KB
testcase_16 AC 203 ms
88,612 KB
testcase_17 AC 190 ms
88,936 KB
testcase_18 AC 207 ms
89,004 KB
testcase_19 AC 190 ms
88,996 KB
testcase_20 AC 202 ms
88,948 KB
testcase_21 AC 215 ms
88,936 KB
testcase_22 AC 194 ms
88,804 KB
testcase_23 AC 203 ms
88,936 KB
testcase_24 AC 197 ms
88,744 KB
testcase_25 AC 196 ms
89,116 KB
testcase_26 AC 203 ms
88,740 KB
testcase_27 AC 204 ms
88,824 KB
testcase_28 AC 197 ms
88,748 KB
testcase_29 AC 194 ms
89,004 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from decimal import*
n = int(input())
a = 0
for i in range(n):
    a += Decimal(input())
print("{0:.10f}".format(a))
0