結果
| 問題 | No.8072 Sum of sqrt(x) |
| ユーザー |
toyuzuko
|
| 提出日時 | 2021-08-15 10:53:25 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 133 bytes |
| 記録 | |
| コンパイル時間 | 1,138 ms |
| コンパイル使用メモリ | 85,248 KB |
| 実行使用メモリ | 96,160 KB |
| 最終ジャッジ日時 | 2026-04-23 18:28:58 |
| 合計ジャッジ時間 | 12,766 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 4 TLE * 1 -- * 22 |
ソースコード
from decimal import Decimal
N = int(input())
res = 0
for _ in range(N):
x = Decimal(input())
res += x.sqrt()
print(res)
toyuzuko