結果

問題 No.3072 Sum of sqrt(x)
ユーザー yuppe19 😺yuppe19 😺
提出日時 2020-09-12 20:10:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,230 ms / 2,000 ms
コード長 285 bytes
コンパイル時間 342 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 159,596 KB
最終ジャッジ日時 2024-05-03 18:15:59
合計ジャッジ時間 145,414 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,352 KB
testcase_01 AC 39 ms
52,224 KB
testcase_02 AC 38 ms
52,096 KB
testcase_03 AC 36 ms
51,712 KB
testcase_04 AC 36 ms
52,096 KB
testcase_05 AC 35 ms
52,224 KB
testcase_06 AC 36 ms
51,968 KB
testcase_07 AC 687 ms
126,920 KB
testcase_08 AC 250 ms
125,632 KB
testcase_09 AC 682 ms
126,788 KB
testcase_10 AC 1,064 ms
159,520 KB
testcase_11 AC 1,029 ms
159,132 KB
testcase_12 AC 1,046 ms
158,956 KB
testcase_13 AC 1,224 ms
159,596 KB
testcase_14 AC 1,230 ms
159,164 KB
testcase_15 AC 1,189 ms
159,152 KB
testcase_16 AC 1,017 ms
159,156 KB
testcase_17 AC 981 ms
159,472 KB
testcase_18 AC 1,152 ms
159,084 KB
testcase_19 AC 1,062 ms
159,132 KB
testcase_20 AC 1,102 ms
159,260 KB
testcase_21 AC 1,045 ms
159,392 KB
testcase_22 AC 1,094 ms
159,264 KB
testcase_23 AC 1,024 ms
159,396 KB
testcase_24 AC 1,153 ms
159,196 KB
testcase_25 AC 1,037 ms
159,536 KB
testcase_26 AC 1,143 ms
159,164 KB
testcase_27 AC 871 ms
129,884 KB
testcase_28 AC 815 ms
139,800 KB
testcase_29 AC 1,025 ms
142,960 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