結果

問題 No.8072 Sum of sqrt(x)
ユーザー yuppe19 😺yuppe19 😺
提出日時 2020-09-12 20:10:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 950 ms / 2,000 ms
コード長 285 bytes
コンパイル時間 961 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 159,520 KB
最終ジャッジ日時 2024-11-24 21:43:44
合計ジャッジ時間 137,478 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
51,584 KB
testcase_01 AC 35 ms
51,584 KB
testcase_02 AC 35 ms
52,096 KB
testcase_03 AC 34 ms
51,840 KB
testcase_04 AC 35 ms
51,840 KB
testcase_05 AC 34 ms
51,968 KB
testcase_06 AC 35 ms
51,712 KB
testcase_07 AC 666 ms
126,540 KB
testcase_08 AC 235 ms
125,720 KB
testcase_09 AC 647 ms
126,620 KB
testcase_10 AC 950 ms
159,092 KB
testcase_11 AC 833 ms
159,272 KB
testcase_12 AC 876 ms
158,844 KB
testcase_13 AC 816 ms
159,340 KB
testcase_14 AC 835 ms
159,020 KB
testcase_15 AC 860 ms
158,840 KB
testcase_16 AC 864 ms
159,000 KB
testcase_17 AC 814 ms
159,408 KB
testcase_18 AC 831 ms
158,996 KB
testcase_19 AC 854 ms
159,520 KB
testcase_20 AC 806 ms
159,332 KB
testcase_21 AC 849 ms
158,976 KB
testcase_22 AC 883 ms
159,232 KB
testcase_23 AC 817 ms
159,008 KB
testcase_24 AC 822 ms
158,848 KB
testcase_25 AC 846 ms
159,168 KB
testcase_26 AC 814 ms
159,384 KB
testcase_27 AC 707 ms
129,812 KB
testcase_28 AC 755 ms
139,660 KB
testcase_29 AC 765 ms
142,972 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3
# †
import os
from math import sqrt

###
if __name__ == '__main__':
    dat = os.read(0, 20000010).decode().split('\n')
    acc = 0
    for x in dat[1:-1]:
        acc += int(sqrt(int(x) * 10**30))
        s = str(acc)
        print(s[:-15] + '.' + s[-15:17])
0