結果

問題 No.3072 Sum of sqrt(x)
ユーザー Mao-betaMao-beta
提出日時 2024-08-22 11:32:58
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 841 bytes
コンパイル時間 4,109 ms
コンパイル使用メモリ 81,780 KB
実行使用メモリ 107,176 KB
最終ジャッジ日時 2024-08-22 11:34:18
合計ジャッジ時間 23,619 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
57,080 KB
testcase_01 AC 45 ms
55,992 KB
testcase_02 WA -
testcase_03 AC 43 ms
57,140 KB
testcase_04 AC 43 ms
55,960 KB
testcase_05 AC 43 ms
56,216 KB
testcase_06 AC 42 ms
56,172 KB
testcase_07 OLE -
testcase_08 AC 642 ms
98,148 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
        print(d, ".", r, sep="")


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