結果

問題 No.735 接線
ユーザー tentententen
提出日時 2020-11-04 11:35:35
言語 Java21
(openjdk 21)
結果
AC  
実行時間 152 ms / 2,000 ms
コード長 254 bytes
コンパイル時間 2,276 ms
コンパイル使用メモリ 74,540 KB
実行使用メモリ 41,960 KB
最終ジャッジ日時 2024-07-22 09:53:14
合計ジャッジ時間 8,015 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 143 ms
41,648 KB
testcase_01 AC 145 ms
41,476 KB
testcase_02 AC 142 ms
41,948 KB
testcase_03 AC 147 ms
41,688 KB
testcase_04 AC 145 ms
41,780 KB
testcase_05 AC 145 ms
41,896 KB
testcase_06 AC 147 ms
41,744 KB
testcase_07 AC 140 ms
41,528 KB
testcase_08 AC 148 ms
41,952 KB
testcase_09 AC 146 ms
41,592 KB
testcase_10 AC 146 ms
41,664 KB
testcase_11 AC 146 ms
41,792 KB
testcase_12 AC 143 ms
41,872 KB
testcase_13 AC 151 ms
41,516 KB
testcase_14 AC 144 ms
41,656 KB
testcase_15 AC 143 ms
41,784 KB
testcase_16 AC 145 ms
41,688 KB
testcase_17 AC 144 ms
41,944 KB
testcase_18 AC 144 ms
41,704 KB
testcase_19 AC 147 ms
41,804 KB
testcase_20 AC 152 ms
41,948 KB
testcase_21 AC 145 ms
41,816 KB
testcase_22 AC 141 ms
41,536 KB
testcase_23 AC 142 ms
41,660 KB
testcase_24 AC 146 ms
41,960 KB
testcase_25 AC 150 ms
41,692 KB
testcase_26 AC 144 ms
41,784 KB
testcase_27 AC 144 ms
41,800 KB
testcase_28 AC 143 ms
41,572 KB
testcase_29 AC 146 ms
41,668 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main (String[] args) {
		Scanner sc = new Scanner(System.in);
		double r = sc.nextDouble();
		double d = sc.nextDouble();
		System.out.println(Math.sqrt(Math.pow(d, 2) - Math.pow(r, 2)));
	}
}
0