結果
| 問題 | No.8072 Sum of sqrt(x) |
| ユーザー |
maspy
|
| 提出日時 | 2020-06-21 03:18:16 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 360 bytes |
| 記録 | |
| コンパイル時間 | 1,152 ms |
| コンパイル使用メモリ | 20,696 KB |
| 実行使用メモリ | 175,032 KB |
| 最終ジャッジ日時 | 2026-03-19 02:10:21 |
| 合計ジャッジ時間 | 127,147 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 25 WA * 2 |
ソースコード
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)
integer, frac = np.divmod(nums, 1)
np.cumsum(integer, out=integer)
np.cumsum(frac, out=frac)
x = integer + frac
print('\n'.join(map(str, x.tolist())))
maspy