結果

問題 No.3072 Sum of sqrt(x)
ユーザー tcltktcltk
提出日時 2021-01-16 06:07:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,941 ms / 2,000 ms
コード長 636 bytes
コンパイル時間 274 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 92,160 KB
最終ジャッジ日時 2024-05-05 09:13:56
合計ジャッジ時間 118,445 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 138 ms
88,704 KB
testcase_01 AC 153 ms
89,088 KB
testcase_02 AC 138 ms
89,216 KB
testcase_03 AC 140 ms
89,088 KB
testcase_04 AC 140 ms
89,344 KB
testcase_05 AC 142 ms
88,704 KB
testcase_06 AC 140 ms
89,088 KB
testcase_07 AC 1,662 ms
91,008 KB
testcase_08 AC 521 ms
91,776 KB
testcase_09 AC 924 ms
92,160 KB
testcase_10 AC 1,163 ms
91,136 KB
testcase_11 AC 1,516 ms
91,136 KB
testcase_12 AC 1,882 ms
91,136 KB
testcase_13 AC 1,941 ms
91,008 KB
testcase_14 AC 1,819 ms
91,264 KB
testcase_15 AC 1,791 ms
91,136 KB
testcase_16 AC 1,864 ms
91,008 KB
testcase_17 AC 1,821 ms
91,008 KB
testcase_18 AC 1,778 ms
90,752 KB
testcase_19 AC 1,825 ms
91,264 KB
testcase_20 AC 1,835 ms
91,264 KB
testcase_21 AC 1,904 ms
91,264 KB
testcase_22 AC 1,777 ms
90,752 KB
testcase_23 AC 1,780 ms
91,264 KB
testcase_24 AC 1,846 ms
91,136 KB
testcase_25 AC 1,935 ms
91,136 KB
testcase_26 AC 1,870 ms
91,136 KB
testcase_27 AC 1,728 ms
91,136 KB
testcase_28 AC 1,768 ms
91,392 KB
testcase_29 AC 1,912 ms
91,008 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#region Header
#!/usr/bin/env python3
# from typing import *

import sys
import io
import math
import collections
import decimal
import itertools
from queue import PriorityQueue
import bisect
import heapq

def input():
    return sys.stdin.readline()[:-1]
# input = sys.stdin.readline

sys.setrecursionlimit(1000000)
#endregion

# _INPUT = """3
# 3
# 4
# 5
# """
# sys.stdin = io.StringIO(_INPUT)


def main():
    N = int(input())
    s = 0
    for i in range(N):
        x = int(input()) * 10**30
        s += int(math.sqrt(x))
        print(s / 10**15)


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