結果
| 問題 | No.8072 Sum of sqrt(x) |
| ユーザー |
|
| 提出日時 | 2022-02-20 17:44:24 |
| 言語 | Python3 (3.14.3 + numpy 2.4.4 + scipy 1.17.1) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 106 bytes |
| 記録 | |
| コンパイル時間 | 494 ms |
| コンパイル使用メモリ | 20,444 KB |
| 実行使用メモリ | 30,584 KB |
| 最終ジャッジ日時 | 2026-03-18 22:12:03 |
| 合計ジャッジ時間 | 81,142 ms |
|
ジャッジサーバーID (参考情報) |
judge3_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 4 TLE * 23 |
ソースコード
n = int(input())
result = 0
for i in range(n):
v = int(input())
result += v**0.5
print(result)