結果
問題 | No.3072 Sum of sqrt(x) |
ユーザー | maspy |
提出日時 | 2020-06-21 03:32:32 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
(最新)
AC
(最初)
|
実行時間 | - |
コード長 | 451 bytes |
コンパイル時間 | 162 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 188,340 KB |
最終ジャッジ日時 | 2024-06-29 14:11:21 |
合計ジャッジ時間 | 34,072 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 488 ms
44,600 KB |
testcase_01 | AC | 486 ms
43,836 KB |
testcase_02 | AC | 495 ms
43,848 KB |
testcase_03 | AC | 494 ms
43,980 KB |
testcase_04 | AC | 490 ms
43,964 KB |
testcase_05 | AC | 484 ms
44,216 KB |
testcase_06 | AC | 490 ms
44,348 KB |
testcase_07 | TLE | - |
testcase_08 | AC | 1,055 ms
167,944 KB |
testcase_09 | AC | 1,157 ms
182,016 KB |
testcase_10 | AC | 1,556 ms
183,936 KB |
testcase_11 | TLE | - |
testcase_12 | TLE | - |
testcase_13 | TLE | - |
testcase_14 | TLE | - |
testcase_15 | TLE | - |
testcase_16 | TLE | - |
testcase_17 | TLE | - |
testcase_18 | TLE | - |
testcase_19 | TLE | - |
testcase_20 | TLE | - |
testcase_21 | TLE | - |
testcase_22 | TLE | - |
testcase_23 | TLE | - |
testcase_24 | TLE | - |
testcase_25 | TLE | - |
testcase_26 | TLE | - |
testcase_27 | TLE | - |
testcase_28 | TLE | - |
testcase_29 | TLE | - |
ソースコード
import sys import numpy as np read = sys.stdin.buffer.read readline = sys.stdin.buffer.readline readlines = sys.stdin.buffer.readlines nums = np.array(read().split(), np.float64)[1:] np.sqrt(nums, out=nums) high = np.int64(nums) nums -= high nums *= 1 << 20 mid = np.int64(nums) nums -= mid low = nums np.cumsum(high, out=high) np.cumsum(mid, out=mid) np.cumsum(low, out=low) x = (mid + low) / (1 << 20) + high print('\n'.join(map(str, x.tolist())))