結果

問題 No.3072 Sum of sqrt(x)
ユーザー vwxyzvwxyz
提出日時 2021-10-22 02:35:58
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 773 bytes
コンパイル時間 679 ms
コンパイル使用メモリ 11,808 KB
実行使用メモリ 11,408 KB
最終ジャッジ日時 2023-10-22 00:45:57
合計ジャッジ時間 65,875 ms
ジャッジサーバーID
(参考情報)
judge12 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
11,240 KB
testcase_01 AC 35 ms
11,240 KB
testcase_02 AC 33 ms
11,240 KB
testcase_03 AC 33 ms
11,240 KB
testcase_04 AC 33 ms
11,240 KB
testcase_05 AC 34 ms
11,240 KB
testcase_06 AC 34 ms
11,240 KB
testcase_07 WA -
testcase_08 AC 1,108 ms
11,408 KB
testcase_09 AC 1,245 ms
11,364 KB
testcase_10 AC 1,426 ms
11,276 KB
testcase_11 TLE -
testcase_12 TLE -
testcase_13 WA -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 WA -
testcase_25 WA -
testcase_26 TLE -
testcase_27 WA -
testcase_28 WA -
testcase_29 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect
import copy
import decimal
import fractions
import functools
import heapq
import itertools
import math
import random
import sys
from collections import Counter,deque,defaultdict
from functools import lru_cache,reduce
from heapq import heappush,heappop,heapify,heappushpop,_heappop_max,_heapify_max
def _heappush_max(heap,item):
    heap.append(item)
    heapq._siftdown_max(heap, 0, len(heap)-1)
def _heappushpop_max(heap, item):
    if heap and item < heap[0]:
        item, heap[0] = heap[0], item
        heapq._siftup_max(heap, 0)
    return item
from math import gcd as GCD
read=sys.stdin.read
readline=sys.stdin.readline
readlines=sys.stdin.readlines

N=int(readline())
ans=0
for i in range(N):
    x=int(readline())
    ans+=math.sqrt(x)
    print(ans)
0