結果

問題 No.3072 Sum of sqrt(x)
ユーザー Mao-betaMao-beta
提出日時 2024-08-22 12:03:45
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 871 bytes
コンパイル時間 848 ms
コンパイル使用メモリ 82,496 KB
実行使用メモリ 107,240 KB
最終ジャッジ日時 2024-08-22 12:04:55
合計ジャッジ時間 66,934 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
57,640 KB
testcase_01 AC 45 ms
56,536 KB
testcase_02 WA -
testcase_03 AC 44 ms
56,944 KB
testcase_04 AC 50 ms
56,668 KB
testcase_05 AC 45 ms
55,456 KB
testcase_06 AC 46 ms
56,780 KB
testcase_07 OLE -
testcase_08 AC 683 ms
98,876 KB
testcase_09 TLE -
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 = ans // 10**20
        r = ans - d * 10**20
        r //= 10**len(str(d))
        print(d, ".", r, sep="")


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