結果

問題 No.81 すべて足すだけの簡単なお仕事です。
ユーザー H20H20
提出日時 2021-02-25 09:23:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 132 ms / 5,000 ms
コード長 289 bytes
コンパイル時間 418 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 80,256 KB
最終ジャッジ日時 2024-07-22 16:56:48
合計ジャッジ時間 5,496 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
79,872 KB
testcase_01 AC 124 ms
80,180 KB
testcase_02 AC 125 ms
80,128 KB
testcase_03 AC 121 ms
80,064 KB
testcase_04 AC 129 ms
80,128 KB
testcase_05 AC 127 ms
80,128 KB
testcase_06 AC 128 ms
79,992 KB
testcase_07 AC 128 ms
79,836 KB
testcase_08 AC 130 ms
79,872 KB
testcase_09 AC 131 ms
80,008 KB
testcase_10 AC 126 ms
79,756 KB
testcase_11 AC 128 ms
80,232 KB
testcase_12 AC 129 ms
80,000 KB
testcase_13 AC 126 ms
79,960 KB
testcase_14 AC 123 ms
80,128 KB
testcase_15 AC 128 ms
80,164 KB
testcase_16 AC 124 ms
79,968 KB
testcase_17 AC 123 ms
80,128 KB
testcase_18 AC 132 ms
80,036 KB
testcase_19 AC 123 ms
79,840 KB
testcase_20 AC 124 ms
80,128 KB
testcase_21 AC 123 ms
80,000 KB
testcase_22 AC 126 ms
79,836 KB
testcase_23 AC 127 ms
80,128 KB
testcase_24 AC 129 ms
80,024 KB
testcase_25 AC 126 ms
80,088 KB
testcase_26 AC 124 ms
79,812 KB
testcase_27 AC 126 ms
79,836 KB
testcase_28 AC 124 ms
80,128 KB
testcase_29 AC 126 ms
80,256 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from decimal import *
N=int(input())
s = 0
for i in range(N):
    A = input()
    d = Decimal(A)*10**10
    s += int(d)
if s==0:
    print('0.0000000000')
else:
    if s>0:
        s = str(s).zfill(11)
    else:
        s = str(s).zfill(12)
    ans = s[:-10] + '.' + s[-10:]
    print(ans)
0