結果

問題 No.724 円と円の間の円
ユーザー 37zigen37zigen
提出日時 2018-08-06 00:43:48
言語 Java21
(openjdk 21)
結果
AC  
実行時間 131 ms / 2,000 ms
コード長 610 bytes
コンパイル時間 2,339 ms
コンパイル使用メモリ 75,228 KB
実行使用メモリ 52,688 KB
最終ジャッジ日時 2024-09-19 18:07:59
合計ジャッジ時間 5,678 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
52,688 KB
testcase_01 AC 131 ms
51,952 KB
testcase_02 AC 129 ms
41,820 KB
testcase_03 AC 111 ms
40,824 KB
testcase_04 AC 117 ms
41,260 KB
testcase_05 AC 112 ms
41,228 KB
testcase_06 AC 125 ms
41,912 KB
testcase_07 AC 122 ms
41,156 KB
testcase_08 AC 107 ms
40,552 KB
testcase_09 AC 114 ms
41,272 KB
testcase_10 AC 126 ms
41,392 KB
testcase_11 AC 109 ms
40,748 KB
testcase_12 AC 118 ms
41,496 KB
testcase_13 AC 117 ms
41,328 KB
testcase_14 AC 108 ms
40,588 KB
testcase_15 AC 107 ms
40,336 KB
testcase_16 AC 116 ms
41,704 KB
testcase_17 AC 118 ms
41,368 KB
testcase_18 AC 119 ms
41,816 KB
testcase_19 AC 110 ms
40,884 KB
testcase_20 AC 117 ms
41,128 KB
testcase_21 AC 122 ms
41,692 KB
testcase_22 AC 110 ms
41,332 KB
testcase_23 AC 122 ms
41,640 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.Scanner;

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

	void run() {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		double a = sc.nextDouble();
		double b = sc.nextDouble();
		double r = 1 / (4 * a) - 1 / (4 * b);
		double h = (n - 1) * r;
		double m = 1 / (4 * a) + 1 / (4 * b);
		double r2 = 0.5 * (1 / (Math.sqrt(h * h + m * m) - r) - 1 / (Math.sqrt(h * h + m * m) + r));
		System.out.println(String.format("%.20f", r2));
	}

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

}
0