結果
| 問題 | No.8072 Sum of sqrt(x) |
| ユーザー |
chocorusk
|
| 提出日時 | 2020-09-12 21:56:29 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 352 bytes |
| 記録 | |
| コンパイル時間 | 430 ms |
| コンパイル使用メモリ | 82,304 KB |
| 実行使用メモリ | 361,028 KB |
| 最終ジャッジ日時 | 2025-01-02 14:36:23 |
| 合計ジャッジ時間 | 78,081 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 3 |
| other | WA * 5 TLE * 22 |
ソースコード
import sys
read=sys.stdin.buffer.read
readline=sys.stdin.buffer.readline
readlines=sys.stdin.buffer.readlines
n=int(readline())
from decimal import *
getcontext().prec=50
import itertools
ans=itertools.accumulate([Decimal(int(readline())).sqrt() for _ in range(n)])
ans=[x.quantize(Decimal('1e-18')) for x in ans]
exit()
print('\n'.join(map(str, ans)))
chocorusk