結果
| 問題 | No.8072 Sum of sqrt(x) |
| ユーザー |
|
| 提出日時 | 2021-09-29 17:07:20 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
TLE
|
| 実行時間 | - |
| コード長 | 99 bytes |
| 記録 | |
| コンパイル時間 | 256 ms |
| コンパイル使用メモリ | 85,764 KB |
| 実行使用メモリ | 82,304 KB |
| 最終ジャッジ日時 | 2026-03-31 00:45:33 |
| 合計ジャッジ時間 | 68,773 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge3_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 8 TLE * 19 |
ソースコード
N = int(input())
now = 0
for _ in range(N):
a = int(input())
now += a ** 0.5
print(now)