結果

問題 No.3072 Sum of sqrt(x)
ユーザー yuppe19 😺yuppe19 😺
提出日時 2020-09-12 22:36:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 999 ms / 2,000 ms
コード長 285 bytes
コンパイル時間 1,062 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 159,012 KB
最終ジャッジ日時 2024-06-10 19:02:47
合計ジャッジ時間 130,231 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
51,584 KB
testcase_01 AC 39 ms
52,224 KB
testcase_02 AC 35 ms
51,840 KB
testcase_03 AC 34 ms
51,840 KB
testcase_04 AC 35 ms
51,840 KB
testcase_05 AC 34 ms
51,712 KB
testcase_06 AC 35 ms
51,840 KB
testcase_07 AC 606 ms
126,540 KB
testcase_08 AC 286 ms
125,776 KB
testcase_09 AC 553 ms
126,280 KB
testcase_10 AC 719 ms
158,896 KB
testcase_11 AC 705 ms
158,684 KB
testcase_12 AC 721 ms
158,696 KB
testcase_13 AC 705 ms
158,704 KB
testcase_14 AC 717 ms
158,388 KB
testcase_15 AC 726 ms
158,764 KB
testcase_16 AC 717 ms
158,516 KB
testcase_17 AC 714 ms
158,500 KB
testcase_18 AC 737 ms
158,884 KB
testcase_19 AC 686 ms
158,500 KB
testcase_20 AC 702 ms
159,012 KB
testcase_21 AC 699 ms
158,904 KB
testcase_22 AC 999 ms
158,628 KB
testcase_23 AC 763 ms
158,500 KB
testcase_24 AC 696 ms
158,688 KB
testcase_25 AC 745 ms
158,516 KB
testcase_26 AC 695 ms
158,920 KB
testcase_27 AC 559 ms
129,628 KB
testcase_28 AC 590 ms
139,540 KB
testcase_29 AC 660 ms
142,748 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**15)
        s = str(acc)
        print(s[:-15] + '.' + s[-15:17])
0