結果
| 問題 | 
                            No.8072 Sum of sqrt(x)
                             | 
                    
| ユーザー | 
                             maspy
                         | 
                    
| 提出日時 | 2020-06-21 12:17:38 | 
| 言語 | PyPy3  (7.3.15)  | 
                    
| 結果 | 
                             
                                WA
                                 
                             
                            
                         | 
                    
| 実行時間 | - | 
| コード長 | 176 bytes | 
| コンパイル時間 | 2,320 ms | 
| コンパイル使用メモリ | 82,132 KB | 
| 実行使用メモリ | 165,544 KB | 
| 最終ジャッジ日時 | 2024-06-30 09:19:11 | 
| 合計ジャッジ時間 | 26,817 ms | 
| 
                            ジャッジサーバーID (参考情報)  | 
                        judge2 / judge5 | 
(要ログイン)
| ファイルパターン | 結果 | 
|---|---|
| sample | WA * 3 | 
| other | AC * 4 WA * 4 OLE * 19 | 
ソースコード
import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
N = int(readline())
nums = map(int, read().split())
s = 0
for x in nums:
    s += x
    print(s)
            
            
            
        
            
maspy