結果

問題 No.8001 確率論ってこういうものですよね
ユーザー ぴろずぴろず
提出日時 2014-12-25 23:12:11
言語 Java21
(openjdk 21)
結果
AC  
実行時間 170 ms / 5,000 ms
コード長 375 bytes
コンパイル時間 3,505 ms
コンパイル使用メモリ 76,100 KB
実行使用メモリ 43,204 KB
最終ジャッジ日時 2024-06-12 23:23:39
合計ジャッジ時間 4,496 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 155 ms
42,864 KB
testcase_01 AC 158 ms
43,012 KB
testcase_02 AC 142 ms
42,860 KB
testcase_03 AC 156 ms
42,728 KB
testcase_04 AC 160 ms
43,108 KB
testcase_05 AC 168 ms
42,676 KB
testcase_06 AC 150 ms
42,712 KB
testcase_07 AC 157 ms
42,952 KB
testcase_08 AC 141 ms
42,856 KB
testcase_09 AC 170 ms
43,204 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

package b;

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		double x = sc.nextDouble();
		double y = sc.nextDouble();
		double amin = Math.max(Math.max(0,x-1),Math.max(y-1,x+y-1));
		double amax = Math.min(Math.min(1,x),Math.min(y, x+y));
		System.out.print((x-amin) + " " + (x-amax));
	}

}
0