結果
| 問題 |
No.8072 Sum of sqrt(x)
|
| ユーザー |
vwxyz
|
| 提出日時 | 2021-10-22 03:16:58 |
| 言語 | PyPy3 (7.3.15) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 230 bytes |
| コンパイル時間 | 675 ms |
| コンパイル使用メモリ | 82,528 KB |
| 実行使用メモリ | 104,984 KB |
| 最終ジャッジ日時 | 2024-09-22 03:32:47 |
| 合計ジャッジ時間 | 42,418 ms |
|
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | WA * 3 |
| other | AC * 2 WA * 21 TLE * 4 |
ソースコード
import decimal
from math import sqrt
import sys
readline=sys.stdin.readline
N=int(readline())
ans=0
decimal.getcontext().prec=20
for _ in range(N):
x=int(readline())
if x:
r=decimal.Decimal(sqrt(x))
print(ans)
vwxyz