結果

問題 No.81 すべて足すだけの簡単なお仕事です。
ユーザー beetbeet
提出日時 2018-11-29 17:39:54
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 118 ms / 5,000 ms
コード長 163 bytes
コンパイル時間 849 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 80,320 KB
最終ジャッジ日時 2024-07-22 16:43:24
合計ジャッジ時間 4,888 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 96 ms
80,044 KB
testcase_01 AC 97 ms
79,904 KB
testcase_02 AC 98 ms
79,888 KB
testcase_03 AC 102 ms
80,212 KB
testcase_04 AC 102 ms
80,164 KB
testcase_05 AC 102 ms
79,972 KB
testcase_06 AC 97 ms
80,120 KB
testcase_07 AC 103 ms
80,248 KB
testcase_08 AC 105 ms
80,320 KB
testcase_09 AC 118 ms
80,248 KB
testcase_10 AC 104 ms
80,100 KB
testcase_11 AC 104 ms
80,148 KB
testcase_12 AC 100 ms
80,208 KB
testcase_13 AC 97 ms
80,052 KB
testcase_14 AC 98 ms
80,308 KB
testcase_15 AC 105 ms
80,188 KB
testcase_16 AC 100 ms
79,904 KB
testcase_17 AC 97 ms
79,784 KB
testcase_18 AC 99 ms
80,024 KB
testcase_19 AC 98 ms
79,960 KB
testcase_20 AC 103 ms
80,132 KB
testcase_21 AC 100 ms
80,100 KB
testcase_22 AC 98 ms
79,840 KB
testcase_23 AC 98 ms
80,112 KB
testcase_24 AC 98 ms
80,192 KB
testcase_25 AC 102 ms
79,888 KB
testcase_26 AC 98 ms
80,224 KB
testcase_27 AC 100 ms
80,056 KB
testcase_28 AC 97 ms
80,056 KB
testcase_29 AC 100 ms
80,100 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from decimal import *
n = int(input())
x = Decimal('0.0000000000')
for i in range(0, n):    
    x += Decimal(input())
print('0.0000000000' if x == 0 else str(x))
0