結果

問題 No.1539 不可欠な部分
ユーザー 57tggx57tggx
提出日時 2021-06-06 11:54:14
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 538 ms / 2,000 ms
コード長 743 bytes
コンパイル時間 819 ms
コンパイル使用メモリ 85,168 KB
実行使用メモリ 5,248 KB
最終ジャッジ日時 2024-11-22 19:57:57
合計ジャッジ時間 26,043 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 436 ms
5,248 KB
testcase_02 AC 503 ms
5,248 KB
testcase_03 AC 223 ms
5,248 KB
testcase_04 AC 186 ms
5,248 KB
testcase_05 AC 147 ms
5,248 KB
testcase_06 AC 257 ms
5,248 KB
testcase_07 AC 65 ms
5,248 KB
testcase_08 AC 140 ms
5,248 KB
testcase_09 AC 433 ms
5,248 KB
testcase_10 AC 473 ms
5,248 KB
testcase_11 AC 521 ms
5,248 KB
testcase_12 AC 523 ms
5,248 KB
testcase_13 AC 518 ms
5,248 KB
testcase_14 AC 496 ms
5,248 KB
testcase_15 AC 508 ms
5,248 KB
testcase_16 AC 510 ms
5,248 KB
testcase_17 AC 499 ms
5,248 KB
testcase_18 AC 504 ms
5,248 KB
testcase_19 AC 538 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <iomanip>
#include <cmath>

double fnc(double x){
	return std::exp(std::cos(x));
}

constexpr double E = 2.7182818284590452353602874713526624977572470936999595749669676277240766303535475945713821785251664274;
constexpr double REC_E_PI_SQ = 0.0372739804171723022424089344791876134444808019989621640823907769743547772695024254310945085466479157;

double solve(double n){
	return (
		fnc(REC_E_PI_SQ / n) * 7
		+ fnc(REC_E_PI_SQ * 0.75 / n) * 32
		+ fnc(REC_E_PI_SQ * 0.5 / n) * 12
		+ fnc(REC_E_PI_SQ * 0.25 / n) * 32
		+ E * 7
	) * REC_E_PI_SQ / 90;
}

int main(){
	int t;
	std::cin >> t;
	for(int i = 0; i < t; ++i){
		double n;
		std::cin >> n;
		std::cout << std::setprecision(12) << solve(n) << std::endl;
	}
}
0