結果

問題 No.3001 確率論ってこういうものですよね
ユーザー GrenacheGrenache
提出日時 2015-09-01 19:39:49
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 352 bytes
コンパイル時間 3,362 ms
コンパイル使用メモリ 74,424 KB
実行使用メモリ 41,844 KB
最終ジャッジ日時 2024-07-18 17:30:35
合計ジャッジ時間 5,000 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 118 ms
41,700 KB
testcase_01 AC 107 ms
41,224 KB
testcase_02 AC 115 ms
41,044 KB
testcase_03 AC 106 ms
41,656 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;


public class Main_yukicoder3001 {

    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);

        double x = sc.nextDouble();
        double y = sc.nextDouble();

        System.out.printf("%.10f %.10f\n", Math.max(0.0, x - y), Math.min(x, 1.0 - y));
        
        sc.close();
    }
}
0