結果

問題 No.3072 Sum of sqrt(x)
ユーザー maspymaspy
提出日時 2020-06-21 11:47:00
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,792 ms / 2,000 ms
コード長 184 bytes
コンパイル時間 322 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 253,740 KB
最終ジャッジ日時 2024-10-12 12:38:50
合計ジャッジ時間 162,886 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,352 KB
testcase_01 AC 39 ms
52,096 KB
testcase_02 AC 41 ms
52,224 KB
testcase_03 AC 41 ms
51,968 KB
testcase_04 AC 39 ms
51,840 KB
testcase_05 AC 40 ms
52,096 KB
testcase_06 AC 40 ms
52,224 KB
testcase_07 AC 1,479 ms
215,024 KB
testcase_08 AC 571 ms
214,900 KB
testcase_09 AC 597 ms
214,392 KB
testcase_10 AC 878 ms
240,920 KB
testcase_11 AC 1,332 ms
240,776 KB
testcase_12 AC 1,600 ms
240,924 KB
testcase_13 AC 1,761 ms
240,684 KB
testcase_14 AC 1,583 ms
240,536 KB
testcase_15 AC 1,660 ms
240,668 KB
testcase_16 AC 1,737 ms
240,744 KB
testcase_17 AC 1,593 ms
241,020 KB
testcase_18 AC 1,580 ms
240,564 KB
testcase_19 AC 1,603 ms
240,524 KB
testcase_20 AC 1,792 ms
240,820 KB
testcase_21 AC 1,622 ms
240,904 KB
testcase_22 AC 1,552 ms
240,860 KB
testcase_23 AC 1,689 ms
241,028 KB
testcase_24 AC 1,600 ms
241,020 KB
testcase_25 AC 1,594 ms
240,976 KB
testcase_26 AC 1,650 ms
240,876 KB
testcase_27 AC 1,558 ms
223,412 KB
testcase_28 AC 1,455 ms
250,656 KB
testcase_29 AC 1,645 ms
253,740 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
read = sys.stdin.buffer.read

N, *nums = map(int, read().split())

s,t,r = 0, 0, 0
for x in nums:
    x = x**.5 + r
    t = s + x
    r = x - (t - s)
    s = t
    print(s)
0