結果
| 問題 | 
                            No.8072 Sum of sqrt(x)
                             | 
                    
| ユーザー | 
                             Kiri8128
                         | 
                    
| 提出日時 | 2020-09-13 23:36:43 | 
| 言語 | PyPy3  (7.3.15)  | 
                    
| 結果 | 
                             
                                WA
                                 
                             
                            
                         | 
                    
| 実行時間 | - | 
| コード長 | 153 bytes | 
| コンパイル時間 | 722 ms | 
| コンパイル使用メモリ | 81,792 KB | 
| 実行使用メモリ | 317,224 KB | 
| 最終ジャッジ日時 | 2024-06-13 04:44:10 | 
| 合計ジャッジ時間 | 54,822 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge4 / judge2 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | AC * 3 | 
| other | AC * 8 WA * 18 TLE * 1 | 
ソースコード
from math import sqrt
N, *X = map(int, open(0).read().split())
s = 0
ANS = []
for x in X:
    s += sqrt(x)
    ANS.append(str(s))
print(*ANS, sep = "\n")
            
            
            
        
            
Kiri8128