結果

問題 No.3072 Sum of sqrt(x)
ユーザー titiatitia
提出日時 2024-09-27 04:40:21
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 446 bytes
コンパイル時間 286 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 99,136 KB
最終ジャッジ日時 2024-09-27 04:40:38
合計ジャッジ時間 16,533 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 126 ms
80,128 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 TLE -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from decimal import *
getcontext().prec = 50

N=int(input())
X=[int(input()) for i in range(N)]

ANS=[]

score=Decimal(0)
for x in X:
    x*=10**40

    MIN=Decimal(0)
    MAX=Decimal(x)
    for i in range(100):
        mid=(MAX+MIN)/2

        if mid*mid>x:
            MAX=mid
        else:
            MIN=mid

    score+=(Decimal(MAX+MIN)/2/10**20)

    ANS.append(score)

print("\n".join(map(str,ANS)))
0