結果

問題 No.3072 Sum of sqrt(x)
ユーザー Mao-betaMao-beta
提出日時 2024-08-22 12:20:09
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 340 bytes
コンパイル時間 461 ms
コンパイル使用メモリ 82,540 KB
実行使用メモリ 164,404 KB
最終ジャッジ日時 2024-08-22 12:21:14
合計ジャッジ時間 62,518 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,724 KB
testcase_01 AC 35 ms
52,252 KB
testcase_02 AC 41 ms
53,284 KB
testcase_03 AC 35 ms
52,460 KB
testcase_04 AC 37 ms
52,856 KB
testcase_05 AC 37 ms
53,704 KB
testcase_06 AC 36 ms
52,468 KB
testcase_07 TLE -
testcase_08 AC 270 ms
126,776 KB
testcase_09 AC 1,991 ms
131,196 KB
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 TLE -
testcase_26 TLE -
testcase_27 TLE -
testcase_28 TLE -
testcase_29 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import os
import math

def main():
    dat = os.read(0, 20000010).decode().split('\n')
    ans = 0
    for x in dat[1:-1]:
        x = int(x)
        x *= 10**40
        ans += math.isqrt(x)
        d = str(ans // 10**20)
        s = str(ans)[:len(d)] + "." + str(ans)[len(d):]
        print(s[:19])


if __name__ == "__main__":
    main()
0