結果
| 問題 | No.8072 Sum of sqrt(x) |
| ユーザー |
|
| 提出日時 | 2021-09-29 17:07:20 |
| 言語 | PyPy3 (7.3.17) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 99 bytes |
| 記録 | |
| コンパイル時間 | 227 ms |
| コンパイル使用メモリ | 96,108 KB |
| 実行使用メモリ | 85,632 KB |
| 最終ジャッジ日時 | 2026-08-14 02:44:50 |
| 合計ジャッジ時間 | 59,934 ms |
|
ジャッジサーバーID (参考情報) |
judge1_0 / judge2_0 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 8 WA * 6 TLE * 13 |
ソースコード
N = int(input())
now = 0
for _ in range(N):
a = int(input())
now += a ** 0.5
print(now)