結果

問題 No.3072 Sum of sqrt(x)
ユーザー maspymaspy
提出日時 2020-06-21 01:57:23
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 344 bytes
コンパイル時間 556 ms
コンパイル使用メモリ 12,288 KB
実行使用メモリ 138,492 KB
最終ジャッジ日時 2024-06-29 02:45:42
合計ジャッジ時間 30,623 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 502 ms
49,444 KB
testcase_01 AC 509 ms
44,068 KB
testcase_02 AC 503 ms
43,328 KB
testcase_03 AC 495 ms
43,684 KB
testcase_04 AC 501 ms
44,068 KB
testcase_05 AC 497 ms
43,300 KB
testcase_06 AC 504 ms
43,936 KB
testcase_07 TLE -
testcase_08 AC 1,657 ms
97,472 KB
testcase_09 AC 1,950 ms
97,164 KB
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
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
import time

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)

for x in nums.tolist():
    print(str(x)[:17])
0