結果

問題 No.3072 Sum of sqrt(x)
ユーザー ShirotsumeShirotsume
提出日時 2023-08-03 01:04:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 898 ms / 2,000 ms
コード長 408 bytes
コンパイル時間 706 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 79,488 KB
最終ジャッジ日時 2024-10-12 23:12:16
合計ジャッジ時間 148,142 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
54,784 KB
testcase_01 AC 42 ms
55,296 KB
testcase_02 AC 50 ms
55,424 KB
testcase_03 AC 41 ms
55,168 KB
testcase_04 AC 42 ms
55,040 KB
testcase_05 AC 42 ms
55,168 KB
testcase_06 AC 41 ms
55,168 KB
testcase_07 AC 652 ms
78,848 KB
testcase_08 AC 249 ms
78,336 KB
testcase_09 AC 646 ms
79,068 KB
testcase_10 AC 833 ms
79,232 KB
testcase_11 AC 864 ms
79,128 KB
testcase_12 AC 842 ms
78,876 KB
testcase_13 AC 837 ms
79,232 KB
testcase_14 AC 840 ms
79,232 KB
testcase_15 AC 837 ms
79,104 KB
testcase_16 AC 846 ms
79,012 KB
testcase_17 AC 843 ms
79,056 KB
testcase_18 AC 860 ms
78,848 KB
testcase_19 AC 831 ms
78,860 KB
testcase_20 AC 846 ms
79,104 KB
testcase_21 AC 898 ms
78,848 KB
testcase_22 AC 841 ms
78,968 KB
testcase_23 AC 846 ms
78,848 KB
testcase_24 AC 848 ms
79,104 KB
testcase_25 AC 845 ms
78,976 KB
testcase_26 AC 876 ms
79,064 KB
testcase_27 AC 717 ms
78,848 KB
testcase_28 AC 751 ms
79,488 KB
testcase_29 AC 786 ms
79,220 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys, time, random
from collections import deque, Counter, defaultdict
input = lambda: sys.stdin.readline().rstrip()
ii = lambda: int(input())
mi = lambda: map(int, input().split())
li = lambda: list(mi())
inf = 2 ** 63 - 1
mod = 998244353
from math import sqrt

n = ii()


now = 0


for i in range(n):
    now += int(sqrt(ii()) * 10 ** 15)
    to = str(now)
    
    print(to[:-15] + '.' + to[-15:17])
0