結果

問題 No.3072 Sum of sqrt(x)
ユーザー harurunharurun
提出日時 2020-09-12 16:41:38
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 174 bytes
コンパイル時間 488 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 117,524 KB
最終ジャッジ日時 2024-06-10 15:41:22
合計ジャッジ時間 59,884 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
10,496 KB
testcase_01 AC 27 ms
10,624 KB
testcase_02 AC 27 ms
10,624 KB
testcase_03 AC 31 ms
10,752 KB
testcase_04 AC 27 ms
10,624 KB
testcase_05 AC 26 ms
10,624 KB
testcase_06 AC 27 ms
10,624 KB
testcase_07 WA -
testcase_08 AC 924 ms
73,344 KB
testcase_09 AC 1,019 ms
97,124 KB
testcase_10 AC 1,274 ms
116,248 KB
testcase_11 AC 1,654 ms
116,208 KB
testcase_12 TLE -
testcase_13 WA -
testcase_14 TLE -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 TLE -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import math
import sys
pin=sys.stdin.readline
ans=0
l=[]
N=int(pin())
for i in range(N):
    x=int(pin())
    ans+=math.sqrt(x)
    l.append(str(ans))
c="\n".join(l)
print(c)
0