結果

問題 No.8072 Sum of sqrt(x)
ユーザー rabimea
提出日時 2023-10-27 20:08:17
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
OLE  
実行時間 -
コード長 344 bytes
コンパイル時間 4,077 ms
コンパイル使用メモリ 192,560 KB
最終ジャッジ日時 2025-02-17 14:11:25
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 4 OLE * 23
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:14:29: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
   14 |                 ll _x; scanf("%lld", &_x);
      |                        ~~~~~^~~~~~~~~~~~~

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

using ld = long double;
using ll = long long;

int main() {
	//~ ios::sync_with_stdio(0);

	int n; cin >> n;
	
	ld sum = 0, c = 0;
	while(n --) {
		ll _x; scanf("%lld", &_x);
		ld x = sqrt(ld(_x));
		
		x = x + c;
		ld t = sum + x;
		c = t - sum - x;
		sum = t;
		
		printf("%.18Lf\n", sum);
	}
}
0