結果

問題 No.8072 Sum of sqrt(x)
ユーザー tcltktcltk
提出日時 2021-01-16 06:07:50
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,847 ms / 2,000 ms
コード長 636 bytes
コンパイル時間 391 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 91,904 KB
最終ジャッジ日時 2024-11-27 04:41:50
合計ジャッジ時間 68,466 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 145 ms
89,088 KB
testcase_01 AC 133 ms
89,088 KB
testcase_02 AC 163 ms
88,944 KB
testcase_03 AC 132 ms
89,088 KB
testcase_04 AC 132 ms
88,704 KB
testcase_05 AC 139 ms
88,960 KB
testcase_06 AC 138 ms
89,088 KB
testcase_07 AC 1,616 ms
91,264 KB
testcase_08 AC 493 ms
91,648 KB
testcase_09 AC 904 ms
91,904 KB
testcase_10 AC 1,072 ms
91,264 KB
testcase_11 AC 1,532 ms
91,136 KB
testcase_12 AC 1,775 ms
91,136 KB
testcase_13 AC 1,815 ms
91,136 KB
testcase_14 AC 1,757 ms
91,264 KB
testcase_15 AC 1,847 ms
91,264 KB
testcase_16 AC 1,801 ms
91,136 KB
testcase_17 AC 1,763 ms
90,752 KB
testcase_18 AC 1,788 ms
91,136 KB
testcase_19 AC 1,808 ms
91,264 KB
testcase_20 AC 1,746 ms
91,264 KB
testcase_21 AC 1,793 ms
91,520 KB
testcase_22 AC 1,799 ms
91,248 KB
testcase_23 AC 1,749 ms
91,136 KB
testcase_24 AC 1,845 ms
91,264 KB
testcase_25 AC 1,769 ms
90,752 KB
testcase_26 AC 1,811 ms
91,264 KB
testcase_27 AC 1,718 ms
90,624 KB
testcase_28 AC 1,693 ms
91,392 KB
testcase_29 AC 1,795 ms
91,136 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