結果

問題 No.81 すべて足すだけの簡単なお仕事です。
ユーザー brthyyjpbrthyyjp
提出日時 2021-09-12 01:24:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 139 ms / 5,000 ms
コード長 359 bytes
コンパイル時間 359 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 80,492 KB
最終ジャッジ日時 2024-07-22 16:58:38
合計ジャッジ時間 6,060 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
80,128 KB
testcase_01 AC 130 ms
80,492 KB
testcase_02 AC 127 ms
80,128 KB
testcase_03 AC 127 ms
80,128 KB
testcase_04 AC 132 ms
80,096 KB
testcase_05 AC 127 ms
80,144 KB
testcase_06 AC 135 ms
80,128 KB
testcase_07 AC 133 ms
80,128 KB
testcase_08 AC 139 ms
80,128 KB
testcase_09 AC 135 ms
80,240 KB
testcase_10 AC 132 ms
79,956 KB
testcase_11 AC 130 ms
79,956 KB
testcase_12 AC 129 ms
80,160 KB
testcase_13 AC 127 ms
80,128 KB
testcase_14 AC 128 ms
79,888 KB
testcase_15 AC 132 ms
80,112 KB
testcase_16 AC 128 ms
80,000 KB
testcase_17 AC 126 ms
80,256 KB
testcase_18 AC 133 ms
80,140 KB
testcase_19 AC 129 ms
80,144 KB
testcase_20 AC 129 ms
80,144 KB
testcase_21 AC 131 ms
80,256 KB
testcase_22 AC 131 ms
80,256 KB
testcase_23 AC 132 ms
80,000 KB
testcase_24 AC 130 ms
80,200 KB
testcase_25 AC 126 ms
79,904 KB
testcase_26 AC 130 ms
79,976 KB
testcase_27 AC 126 ms
80,128 KB
testcase_28 AC 128 ms
80,120 KB
testcase_29 AC 128 ms
80,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from decimal import *
getcontext().prec = 200
n = int(input())
ans = 0
for i in range(n):
    a = str(input())
    a = Decimal(a)
    ans += a
ans = str(ans)
ans = ans.split('.')
if len(ans) == 1:
    print(ans[0]+'.'+'0'*10)
else:
    x, y = ans
    if len(y) >= 10:
        ans = x+'.'+y[0:10]
    else:
        ans = x+'.'+y+'0'*(10-len(y))
    print(ans)
0