結果
| 問題 | No.8072 Sum of sqrt(x) |
| ユーザー |
maspy
|
| 提出日時 | 2020-06-14 01:36:03 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 228 bytes |
| 記録 | |
| コンパイル時間 | 936 ms |
| コンパイル使用メモリ | 20,828 KB |
| 実行使用メモリ | 582,756 KB |
| 最終ジャッジ日時 | 2026-03-24 19:16:28 |
| 合計ジャッジ時間 | 79,071 ms |
|
ジャッジサーバーID (参考情報) |
judge3_1 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 3 |
| other | WA * 4 TLE * 2 MLE * 2 OLE * 19 |
ソースコード
import numpy as np
import sys
readline = sys.stdin.buffer.readline
read = sys.stdin.buffer.read
N = int(readline())
x= np.array(read().split(), np.float128)
print(len(x))
x = np.sqrt(x).cumsum()
print('\n'.join(x.astype(str)))
maspy