結果

問題 No.881 sin(x)/xの和
ユーザー 37zigen37zigen
提出日時 2019-09-07 20:32:34
言語 Java
(openjdk 23)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 1,198 bytes
コンパイル時間 2,176 ms
コンパイル使用メモリ 78,616 KB
実行使用メモリ 61,696 KB
最終ジャッジ日時 2024-11-21 08:06:29
合計ジャッジ時間 11,607 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 455 ms
60,604 KB
testcase_01 WA -
testcase_02 AC 336 ms
59,544 KB
testcase_03 AC 348 ms
60,140 KB
testcase_04 AC 482 ms
61,696 KB
testcase_05 AC 277 ms
58,864 KB
testcase_06 AC 238 ms
56,380 KB
testcase_07 AC 293 ms
58,920 KB
testcase_08 AC 440 ms
60,808 KB
testcase_09 AC 370 ms
60,428 KB
testcase_10 AC 349 ms
60,056 KB
testcase_11 AC 398 ms
60,792 KB
testcase_12 AC 428 ms
61,148 KB
testcase_13 AC 353 ms
60,500 KB
testcase_14 AC 310 ms
58,904 KB
testcase_15 AC 297 ms
58,880 KB
testcase_16 AC 377 ms
61,116 KB
testcase_17 AC 286 ms
58,996 KB
testcase_18 AC 328 ms
59,240 KB
testcase_19 AC 371 ms
61,056 KB
testcase_20 AC 247 ms
56,544 KB
testcase_21 AC 373 ms
61,096 KB
testcase_22 AC 440 ms
60,664 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.math.BigInteger;
import java.util.Arrays;
import java.util.Scanner;

public class Main {
	public static void main(String[] args) {
		new Main().run();
	}

	double sinc(double x) {
		if (x < 1e-8) {
			return 1;
		} else {
			return Math.sin(x) / x;
		}
	}

	double solve(double x, double a) {
		double ret = Math.cos(x + 0.5) / (x + 1) + Math.cos(-x + 0.5) / (-x + 1);
		double cx = Math.cos(x);
		double sx = Math.sin(x);
		for (int i = 1; i < 10000; ++i) {
			ret -= (cx * cos[i] - sx * sin[i]) / (x + i + 1) / (x + i);
			ret -= (cx * cos[i] + sx * sin[i]) / (-x + i + 1) / (-x + i);
		}
		ret *= 0.5 / Math.sin(0.5);
		ret += sinc(x);
		return a * ret;
	}

	double[] cos = new double[10000];
	double[] sin = new double[10000];
	{
		for (int i = 0; i < cos.length; ++i) {
			cos[i] = Math.cos(i + 0.5);
			sin[i] = Math.sin(i + 0.5);
		}
	}

	void run() {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		double ans = 0;
		for (int i = 0; i < n; ++i) {
			double x = sc.nextDouble();
			double a = sc.nextDouble();
			ans += solve(x, a);
		}
		System.out.println(ans);
	}

	static void tr(Object... objects) {
		System.out.println(Arrays.deepToString(objects));
	}
}
0