結果
| 問題 | No.8072 Sum of sqrt(x) |
| ユーザー |
|
| 提出日時 | 2022-02-20 17:43:50 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
WA
(最新)
TLE
(最初)
|
| 実行時間 | - |
| コード長 | 106 bytes |
| 記録 | |
| コンパイル時間 | 223 ms |
| コンパイル使用メモリ | 95,984 KB |
| 実行使用メモリ | 85,760 KB |
| 最終ジャッジ日時 | 2026-08-01 17:18:08 |
| 合計ジャッジ時間 | 55,979 ms |
|
ジャッジサーバーID (参考情報) |
judge2_1 / judge1_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 8 WA * 12 TLE * 7 |
ソースコード
n = int(input())
result = 0
for i in range(n):
v = int(input())
result += v**0.5
print(result)