結果

問題 No.3072 Sum of sqrt(x)
ユーザー titiatitia
提出日時 2024-09-27 04:41:46
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 447 bytes
コンパイル時間 725 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 99,584 KB
最終ジャッジ日時 2024-09-27 04:42:02
合計ジャッジ時間 15,608 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 259 ms
88,448 KB
testcase_01 AC 191 ms
82,304 KB
testcase_02 AC 434 ms
83,840 KB
testcase_03 AC 181 ms
81,664 KB
testcase_04 AC 170 ms
81,920 KB
testcase_05 AC 169 ms
82,048 KB
testcase_06 AC 169 ms
81,920 KB
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(300):
        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