結果

問題 No.3001 確率論ってこういうものですよね
ユーザー ぴろずぴろず
提出日時 2014-12-25 23:08:34
言語 Java21
(openjdk 21)
結果
AC  
実行時間 172 ms / 5,000 ms
コード長 334 bytes
コンパイル時間 2,191 ms
コンパイル使用メモリ 76,568 KB
実行使用メモリ 55,392 KB
最終ジャッジ日時 2024-06-12 23:23:10
合計ジャッジ時間 4,502 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 140 ms
54,784 KB
testcase_01 AC 159 ms
55,392 KB
testcase_02 AC 163 ms
55,136 KB
testcase_03 AC 161 ms
55,276 KB
testcase_04 AC 168 ms
55,368 KB
testcase_05 AC 172 ms
55,176 KB
testcase_06 AC 139 ms
55,236 KB
testcase_07 AC 168 ms
55,144 KB
testcase_08 AC 161 ms
54,920 KB
testcase_09 AC 170 ms
54,944 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,Math.min(x,y));
		System.out.print((x-amin) + " " + (x-amax));
	}

}
0