結果
| 問題 |
No.8072 Sum of sqrt(x)
|
| ユーザー |
maspy
|
| 提出日時 | 2020-06-14 01:46:45 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 202 bytes |
| コンパイル時間 | 330 ms |
| コンパイル使用メモリ | 12,544 KB |
| 実行使用メモリ | 134,296 KB |
| 最終ジャッジ日時 | 2024-07-03 11:18:06 |
| 合計ジャッジ時間 | 37,031 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 3 |
| other | WA * 27 |
ソースコード
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.float64) x = np.sqrt(x).astype(np.float128).cumsum()
maspy