結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 106 ms
79,940 KB
testcase_01 AC 100 ms
80,092 KB
testcase_02 AC 101 ms
80,368 KB
testcase_03 AC 102 ms
80,060 KB
testcase_04 AC 104 ms
79,836 KB
testcase_05 AC 102 ms
80,220 KB
testcase_06 AC 104 ms
80,152 KB
testcase_07 AC 102 ms
80,092 KB
testcase_08 AC 112 ms
80,236 KB
testcase_09 AC 104 ms
80,316 KB
testcase_10 AC 99 ms
80,100 KB
testcase_11 AC 107 ms
79,752 KB
testcase_12 AC 104 ms
80,136 KB
testcase_13 AC 99 ms
79,752 KB
testcase_14 AC 96 ms
80,044 KB
testcase_15 AC 104 ms
80,292 KB
testcase_16 AC 101 ms
80,336 KB
testcase_17 AC 101 ms
79,880 KB
testcase_18 AC 105 ms
80,080 KB
testcase_19 AC 99 ms
80,140 KB
testcase_20 AC 98 ms
80,120 KB
testcase_21 AC 98 ms
80,184 KB
testcase_22 AC 99 ms
80,208 KB
testcase_23 AC 103 ms
80,096 KB
testcase_24 AC 98 ms
80,144 KB
testcase_25 AC 103 ms
80,244 KB
testcase_26 AC 98 ms
80,036 KB
testcase_27 AC 96 ms
80,176 KB
testcase_28 AC 98 ms
80,100 KB
testcase_29 AC 98 ms
79,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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