結果
| 問題 |
No.8072 Sum of sqrt(x)
|
| ユーザー |
toyuzuko
|
| 提出日時 | 2020-10-08 23:58:09 |
| 言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 187 bytes |
| コンパイル時間 | 133 ms |
| コンパイル使用メモリ | 12,416 KB |
| 実行使用メモリ | 138,624 KB |
| 最終ジャッジ日時 | 2024-07-20 06:16:06 |
| 合計ジャッジ時間 | 66,593 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 8 WA * 2 TLE * 17 |
ソースコード
import sys
input = sys.stdin.buffer.readline
N = int(input())
s = 0
res = []
for _ in range(N):
x = float(input())
s += x**0.5
res.append(s)
print('\n'.join(map(str, res)))
toyuzuko