結果

問題 No.3072 Sum of sqrt(x)
ユーザー maspymaspy
提出日時 2020-06-17 12:20:52
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
OLE  
実行時間 -
コード長 338 bytes
コンパイル時間 437 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 48,900 KB
最終ジャッジ日時 2024-06-29 00:02:11
合計ジャッジ時間 25,014 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 472 ms
48,900 KB
testcase_01 AC 478 ms
43,780 KB
testcase_02 AC 465 ms
43,672 KB
testcase_03 AC 454 ms
43,640 KB
testcase_04 AC 465 ms
43,664 KB
testcase_05 AC 443 ms
43,800 KB
testcase_06 AC 446 ms
43,392 KB
testcase_07 OLE -
testcase_08 OLE -
testcase_09 OLE -
testcase_10 OLE -
testcase_11 OLE -
testcase_12 OLE -
testcase_13 TLE -
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
import numpy as np

read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines

N = int(readline())
nums = np.array(read().split(), np.float64)
np.sqrt(nums, out=nums)
nums = nums.astype(np.longdouble)
np.cumsum(nums, out=nums)
print(*('{:.16e}'.format(x) for x in nums), sep='\n')
0