結果

問題 No.3072 Sum of sqrt(x)
ユーザー Mao-betaMao-beta
提出日時 2024-08-22 12:22:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,582 ms / 2,000 ms
コード長 333 bytes
コンパイル時間 716 ms
コンパイル使用メモリ 82,496 KB
実行使用メモリ 160,564 KB
最終ジャッジ日時 2024-08-22 12:25:08
合計ジャッジ時間 148,432 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,544 KB
testcase_01 AC 39 ms
53,284 KB
testcase_02 AC 37 ms
53,020 KB
testcase_03 AC 36 ms
54,108 KB
testcase_04 AC 38 ms
52,436 KB
testcase_05 AC 36 ms
52,412 KB
testcase_06 AC 36 ms
53,416 KB
testcase_07 AC 978 ms
126,908 KB
testcase_08 AC 290 ms
126,992 KB
testcase_09 AC 932 ms
126,820 KB
testcase_10 AC 1,566 ms
160,212 KB
testcase_11 AC 1,582 ms
160,316 KB
testcase_12 AC 1,326 ms
159,844 KB
testcase_13 AC 1,303 ms
159,808 KB
testcase_14 AC 1,351 ms
160,132 KB
testcase_15 AC 1,369 ms
160,032 KB
testcase_16 AC 1,351 ms
160,160 KB
testcase_17 AC 1,347 ms
160,036 KB
testcase_18 AC 1,299 ms
160,564 KB
testcase_19 AC 1,276 ms
159,864 KB
testcase_20 AC 1,289 ms
160,536 KB
testcase_21 AC 1,324 ms
160,388 KB
testcase_22 AC 1,341 ms
159,960 KB
testcase_23 AC 1,375 ms
160,048 KB
testcase_24 AC 1,394 ms
160,108 KB
testcase_25 AC 1,307 ms
160,428 KB
testcase_26 AC 1,265 ms
159,740 KB
testcase_27 AC 1,141 ms
130,008 KB
testcase_28 AC 1,068 ms
139,592 KB
testcase_29 AC 1,357 ms
143,820 KB
権限があれば一括ダウンロードができます

ソースコード

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)
        ans += int(math.sqrt(x) * 10**22)
        d = str(ans // 10**22)
        s = str(ans)[:len(d)] + "." + str(ans)[len(d):]
        print(s[:19])


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