結果

問題 No.3072 Sum of sqrt(x)
ユーザー Mao-betaMao-beta
提出日時 2024-08-22 12:10:37
言語 PyPy3
(7.3.15)
結果
OLE  
実行時間 -
コード長 862 bytes
コンパイル時間 524 ms
コンパイル使用メモリ 82,436 KB
実行使用メモリ 80,088 KB
最終ジャッジ日時 2024-08-22 12:11:42
合計ジャッジ時間 63,803 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
55,652 KB
testcase_01 AC 52 ms
55,828 KB
testcase_02 AC 48 ms
57,444 KB
testcase_03 AC 48 ms
56,276 KB
testcase_04 AC 49 ms
56,476 KB
testcase_05 AC 49 ms
56,744 KB
testcase_06 AC 48 ms
57,400 KB
testcase_07 OLE -
testcase_08 AC 338 ms
80,088 KB
testcase_09 OLE -
testcase_10 OLE -
testcase_11 OLE -
testcase_12 OLE -
testcase_13 OLE -
testcase_14 OLE -
testcase_15 OLE -
testcase_16 OLE -
testcase_17 OLE -
testcase_18 OLE -
testcase_19 OLE -
testcase_20 OLE -
testcase_21 OLE -
testcase_22 OLE -
testcase_23 OLE -
testcase_24 OLE -
testcase_25 OLE -
testcase_26 OLE -
testcase_27 OLE -
testcase_28 OLE -
testcase_29 OLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
import math
import bisect
from heapq import heapify, heappop, heappush
from collections import deque, defaultdict, Counter
from functools import lru_cache
from itertools import accumulate, combinations, permutations, product

sys.set_int_max_str_digits(10 ** 6)
sys.setrecursionlimit(1000000)
MOD = 10 ** 9 + 7
MOD99 = 998244353

input = lambda: sys.stdin.readline().strip()
NI = lambda: int(input())
NMI = lambda: map(int, input().split())
NLI = lambda: list(NMI())
SI = lambda: input()
SMI = lambda: input().split()
SLI = lambda: list(SMI())
EI = lambda m: [NLI() for _ in range(m)]


def main():
    N = NI()
    ans = 0
    for _ in range(N):
        x = NI() * 10**40
        ans += math.isqrt(x)
        d = str(ans // 10**20)
        s = str(ans)[:len(d)] + "." + str(ans)[len(d):]
        print(s[:20])


if __name__ == "__main__":
    main()
0