結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 164 ms
55,028 KB
testcase_01 AC 168 ms
57,356 KB
testcase_02 AC 161 ms
54,704 KB
testcase_03 AC 165 ms
54,732 KB
testcase_04 AC 165 ms
54,944 KB
testcase_05 AC 172 ms
55,164 KB
testcase_06 AC 168 ms
55,232 KB
testcase_07 AC 167 ms
55,196 KB
testcase_08 AC 166 ms
54,920 KB
testcase_09 AC 172 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.println((x-amin) + " " + (x-amax));
	}

}
0