結果

問題 No.3001 確率論ってこういうものですよね
ユーザー ぴろずぴろず
提出日時 2014-12-25 23:00:09
言語 Java21
(openjdk 21)
結果
AC  
実行時間 172 ms / 5,000 ms
コード長 322 bytes
コンパイル時間 4,604 ms
コンパイル使用メモリ 85,748 KB
実行使用メモリ 55,292 KB
最終ジャッジ日時 2024-06-12 23:20:41
合計ジャッジ時間 5,245 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 168 ms
54,996 KB
testcase_01 AC 160 ms
55,120 KB
testcase_02 AC 162 ms
55,092 KB
testcase_03 AC 172 ms
55,064 KB
testcase_04 AC 172 ms
55,128 KB
testcase_05 AC 172 ms
55,292 KB
testcase_06 AC 165 ms
54,356 KB
testcase_07 AC 165 ms
55,144 KB
testcase_08 AC 162 ms
55,268 KB
testcase_09 AC 162 ms
55,108 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(x+y-1,0);
		double amax = Math.min(x,y);
		System.out.println((x-amin) + " " + (x-amax));
	}

}
0