結果

問題 No.81 すべて足すだけの簡単なお仕事です。
ユーザー YCescaYCesca
提出日時 2016-09-04 03:14:03
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 147 ms / 5,000 ms
コード長 116 bytes
コンパイル時間 160 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 80,384 KB
最終ジャッジ日時 2024-07-22 16:34:38
合計ジャッジ時間 5,108 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
80,256 KB
testcase_01 AC 125 ms
80,000 KB
testcase_02 AC 127 ms
80,000 KB
testcase_03 AC 124 ms
80,224 KB
testcase_04 AC 127 ms
80,256 KB
testcase_05 AC 125 ms
80,304 KB
testcase_06 AC 128 ms
80,284 KB
testcase_07 AC 124 ms
80,256 KB
testcase_08 AC 127 ms
80,000 KB
testcase_09 AC 147 ms
80,296 KB
testcase_10 AC 122 ms
80,256 KB
testcase_11 AC 126 ms
80,256 KB
testcase_12 AC 123 ms
79,872 KB
testcase_13 AC 123 ms
80,248 KB
testcase_14 AC 124 ms
80,128 KB
testcase_15 AC 129 ms
80,128 KB
testcase_16 AC 124 ms
80,252 KB
testcase_17 AC 125 ms
80,128 KB
testcase_18 AC 129 ms
79,872 KB
testcase_19 AC 123 ms
79,872 KB
testcase_20 AC 126 ms
79,896 KB
testcase_21 AC 125 ms
80,128 KB
testcase_22 AC 126 ms
80,256 KB
testcase_23 AC 129 ms
80,140 KB
testcase_24 AC 129 ms
80,172 KB
testcase_25 AC 126 ms
80,132 KB
testcase_26 AC 126 ms
80,000 KB
testcase_27 AC 127 ms
80,292 KB
testcase_28 AC 124 ms
80,128 KB
testcase_29 AC 126 ms
80,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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