結果

問題 No.881 sin(x)/xの和
ユーザー 37zigen37zigen
提出日時 2019-09-07 20:28:23
言語 Java
(openjdk 23)
結果
WA  
(最新)
AC  
(最初)
実行時間 -
コード長 949 bytes
コンパイル時間 2,481 ms
コンパイル使用メモリ 78,984 KB
実行使用メモリ 65,056 KB
最終ジャッジ日時 2024-11-21 08:06:53
合計ジャッジ時間 20,588 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1,208 ms
63,840 KB
testcase_01 WA -
testcase_02 AC 617 ms
60,792 KB
testcase_03 AC 637 ms
60,860 KB
testcase_04 AC 1,278 ms
64,540 KB
testcase_05 AC 436 ms
60,124 KB
testcase_06 AC 322 ms
56,152 KB
testcase_07 AC 470 ms
60,732 KB
testcase_08 AC 1,124 ms
65,056 KB
testcase_09 AC 693 ms
60,920 KB
testcase_10 AC 649 ms
61,024 KB
testcase_11 AC 924 ms
61,792 KB
testcase_12 AC 1,071 ms
63,520 KB
testcase_13 AC 647 ms
60,764 KB
testcase_14 AC 515 ms
60,752 KB
testcase_15 AC 516 ms
60,788 KB
testcase_16 AC 825 ms
61,356 KB
testcase_17 AC 484 ms
60,664 KB
testcase_18 AC 596 ms
62,884 KB
testcase_19 AC 773 ms
61,408 KB
testcase_20 AC 290 ms
56,308 KB
testcase_21 AC 714 ms
60,924 KB
testcase_22 AC 1,019 ms
60,440 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);
		for (int i = 1; i < 10000; ++i) {
			ret -= Math.cos(x + i + 0.5) / (x + i + 1) / (x + i);
			ret -= Math.cos(-x + i + 0.5) / (-x + i + 1) / (-x + i);
		}
		ret *= 0.5 / Math.sin(0.5);
		ret += sinc(x);
		return a * ret;
	}

	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