結果

問題 No.81 すべて足すだけの簡単なお仕事です。
ユーザー ゆるくゆるく
提出日時 2014-11-27 23:43:19
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 31 ms / 5,000 ms
コード長 175 bytes
コンパイル時間 354 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 11,264 KB
最終ジャッジ日時 2024-07-22 16:25:12
合計ジャッジ時間 1,746 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 30
権限があれば一括ダウンロードができます

ソースコード

diff #

from decimal import *

n = int(input()) 
t = [str(input()) for i in range(n)]

count = Decimal('0')
for tt in t:
  count += Decimal(tt)
print("{0:.10f}".format(count))
0