結果
問題 | No.236 鴛鴦茶 |
ユーザー | tsunabit |
提出日時 | 2019-05-26 17:16:09 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 629 bytes |
コンパイル時間 | 3,746 ms |
コンパイル使用メモリ | 74,788 KB |
実行使用メモリ | 54,436 KB |
最終ジャッジ日時 | 2024-09-17 15:16:34 |
合計ジャッジ時間 | 7,091 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 131 ms
54,048 KB |
testcase_01 | AC | 118 ms
54,024 KB |
testcase_02 | AC | 119 ms
53,956 KB |
testcase_03 | AC | 123 ms
54,260 KB |
testcase_04 | WA | - |
testcase_05 | AC | 120 ms
53,936 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | AC | 107 ms
53,136 KB |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 133 ms
54,088 KB |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
ソースコード
import java.util.ArrayList; import java.util.Scanner; import java.util.Collections; public class No236 { public static void main(String[] args) { // 標準入力から読み込む際に、Scannerオブジェクトを使う。 Scanner s = new Scanner(System.in); int a = s.nextInt(); int b = s.nextInt(); int x = s.nextInt(); int y = s.nextInt(); double tempx = (a * y) / b; double tempy = (b * x) / a; if(x >= y && tempy <= y) { System.out.println(x + tempy); }else { System.out.println(tempx + y); } } }