結果
| 問題 | No.8072 Sum of sqrt(x) |
| ユーザー |
one23
|
| 提出日時 | 2021-10-24 13:51:02 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 98 bytes |
| 記録 | |
| コンパイル時間 | 234 ms |
| コンパイル使用メモリ | 85,032 KB |
| 実行使用メモリ | 81,568 KB |
| 最終ジャッジ日時 | 2026-04-18 10:40:12 |
| 合計ジャッジ時間 | 24,731 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge2_1 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 6 TLE * 21 |
ソースコード
n=int(input())
x=0
for i in range(n):
x+=int((int(input())*(10**32))**0.5)
print(x/10**16)
one23