結果

問題 No.881 sin(x)/xの和
ユーザー 37zigen37zigen
提出日時 2019-09-01 13:11:48
言語 Java21
(openjdk 21)
結果
AC  
実行時間 368 ms / 2,000 ms
コード長 659 bytes
コンパイル時間 2,151 ms
コンパイル使用メモリ 75,988 KB
実行使用メモリ 61,244 KB
最終ジャッジ日時 2024-11-21 08:01:26
合計ジャッジ時間 10,100 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 357 ms
61,244 KB
testcase_01 AC 318 ms
60,172 KB
testcase_02 AC 279 ms
59,536 KB
testcase_03 AC 297 ms
59,076 KB
testcase_04 AC 368 ms
60,564 KB
testcase_05 AC 249 ms
58,748 KB
testcase_06 AC 224 ms
55,200 KB
testcase_07 AC 258 ms
58,588 KB
testcase_08 AC 349 ms
60,976 KB
testcase_09 AC 316 ms
59,664 KB
testcase_10 AC 286 ms
59,140 KB
testcase_11 AC 328 ms
59,704 KB
testcase_12 AC 344 ms
60,476 KB
testcase_13 AC 295 ms
59,980 KB
testcase_14 AC 262 ms
58,516 KB
testcase_15 AC 264 ms
58,516 KB
testcase_16 AC 314 ms
59,792 KB
testcase_17 AC 260 ms
58,068 KB
testcase_18 AC 288 ms
58,528 KB
testcase_19 AC 318 ms
61,008 KB
testcase_20 AC 216 ms
54,636 KB
testcase_21 AC 319 ms
60,768 KB
testcase_22 AC 314 ms
59,660 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();
	}

	void run() {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		if (!(1 <= n && n <= 1000))
			throw new AssertionError();
		double sum = 0;
		for (int i = 0; i < n; ++i) {
			double x = sc.nextDouble();
			double a = sc.nextDouble();
			if (!(Math.abs(a) <= 1 && 0 <= x && x <= 2 * Math.PI))
				throw new AssertionError();
			sum += a;
		}
		System.out.println(sum * Math.PI);
	}

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