結果
問題 | No.419 直角三角形 |
ユーザー | tenten |
提出日時 | 2020-09-11 17:12:45 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 319 bytes |
コンパイル時間 | 2,107 ms |
コンパイル使用メモリ | 74,656 KB |
実行使用メモリ | 55,804 KB |
最終ジャッジ日時 | 2024-06-07 20:20:07 |
合計ジャッジ時間 | 6,127 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 120 ms
41,140 KB |
testcase_01 | AC | 118 ms
40,884 KB |
testcase_02 | AC | 117 ms
41,436 KB |
testcase_03 | AC | 115 ms
41,052 KB |
testcase_04 | AC | 116 ms
41,392 KB |
testcase_05 | AC | 118 ms
40,752 KB |
testcase_06 | AC | 116 ms
41,168 KB |
testcase_07 | AC | 121 ms
41,484 KB |
testcase_08 | WA | - |
testcase_09 | AC | 118 ms
41,196 KB |
testcase_10 | AC | 107 ms
40,056 KB |
testcase_11 | AC | 112 ms
40,220 KB |
testcase_12 | WA | - |
testcase_13 | AC | 120 ms
41,376 KB |
testcase_14 | AC | 110 ms
40,080 KB |
testcase_15 | AC | 121 ms
41,144 KB |
testcase_16 | AC | 118 ms
41,020 KB |
testcase_17 | AC | 119 ms
41,612 KB |
testcase_18 | AC | 117 ms
40,916 KB |
testcase_19 | AC | 120 ms
41,264 KB |
testcase_20 | AC | 124 ms
40,804 KB |
testcase_21 | AC | 109 ms
40,248 KB |
testcase_22 | WA | - |
ソースコード
import java.util.*; public class Main { public static void main (String[] args) { Scanner sc = new Scanner(System.in); int a = sc.nextInt(); int b = sc.nextInt(); int max = Math.max(a, b); int min = Math.min(a, b); System.out.println(Math.sqrt(Math.pow(max, 2) - Math.pow(min, 2))); } }