結果
問題 |
No.8072 Sum of sqrt(x)
|
ユーザー |
![]() |
提出日時 | 2020-11-08 16:54:15 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
RE
|
実行時間 | - |
コード長 | 189 bytes |
コンパイル時間 | 376 ms |
コンパイル使用メモリ | 12,544 KB |
実行使用メモリ | 10,880 KB |
最終ジャッジ日時 | 2024-07-22 15:14:47 |
合計ジャッジ時間 | 8,955 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | RE * 3 |
other | RE * 27 |
ソースコード
import math A = input() B = [] C = [] counter = 0 for x in range(int(A)): B.append(input()) C.append(0) counter = 0 for y in B: C[x] = C[x] + math.sqrt(B[counter])