結果

問題 No.1551 誕生日の三角形
ユーザー ks2mks2m
提出日時 2021-06-18 21:57:18
言語 Java21
(openjdk 21)
結果
AC  
実行時間 129 ms / 1,000 ms
コード長 295 bytes
コンパイル時間 2,130 ms
コンパイル使用メモリ 74,360 KB
実行使用メモリ 41,760 KB
最終ジャッジ日時 2024-06-22 20:19:17
合計ジャッジ時間 4,049 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 128 ms
40,908 KB
testcase_01 AC 129 ms
41,760 KB
testcase_02 AC 116 ms
40,384 KB
testcase_03 AC 105 ms
39,984 KB
testcase_04 AC 116 ms
41,120 KB
testcase_05 AC 125 ms
41,460 KB
testcase_06 AC 127 ms
41,224 KB
testcase_07 AC 125 ms
41,504 KB
testcase_08 AC 115 ms
41,200 KB
testcase_09 AC 124 ms
41,412 KB
testcase_10 AC 110 ms
40,316 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		int l = sc.nextInt();
		sc.close();

		double l2 = l / 2.0;
		double l3 = l / 3.0;
		System.out.println(Math.sqrt(l2 * Math.pow(l2 - l3, 3)));
	}
}
0