結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 103 ms
41,552 KB
testcase_01 AC 115 ms
41,612 KB
testcase_02 AC 114 ms
41,848 KB
testcase_03 AC 108 ms
41,612 KB
testcase_04 AC 117 ms
41,940 KB
testcase_05 AC 117 ms
41,584 KB
testcase_06 AC 126 ms
41,728 KB
testcase_07 AC 122 ms
41,552 KB
testcase_08 AC 107 ms
41,584 KB
testcase_09 AC 121 ms
41,984 KB
権限があれば一括ダウンロードができます

ソースコード

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.min(x, 1.0 - y), Math.max(0.0, x - y));
        
        sc.close();
    }
}
0