結果
問題 |
No.8072 Sum of sqrt(x)
|
ユーザー |
|
提出日時 | 2021-09-29 17:07:20 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 99 bytes |
コンパイル時間 | 1,231 ms |
コンパイル使用メモリ | 82,344 KB |
実行使用メモリ | 83,476 KB |
最終ジャッジ日時 | 2024-07-16 12:44:49 |
合計ジャッジ時間 | 16,518 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 4 TLE * 1 -- * 22 |
ソースコード
N = int(input()) now = 0 for _ in range(N): a = int(input()) now += a ** 0.5 print(now)