結果

問題 No.846 メダル
ユーザー 37zigen37zigen
提出日時 2019-07-05 23:48:10
言語 Java
(openjdk 23)
結果
AC  
実行時間 157 ms / 2,000 ms
コード長 750 bytes
コンパイル時間 2,091 ms
コンパイル使用メモリ 82,884 KB
実行使用メモリ 42,316 KB
最終ジャッジ日時 2024-10-06 23:22:45
合計ジャッジ時間 6,965 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 150 ms
42,220 KB
testcase_01 AC 116 ms
39,564 KB
testcase_02 AC 138 ms
41,864 KB
testcase_03 AC 141 ms
41,924 KB
testcase_04 AC 105 ms
41,324 KB
testcase_05 AC 121 ms
41,160 KB
testcase_06 AC 146 ms
42,192 KB
testcase_07 AC 120 ms
41,312 KB
testcase_08 AC 139 ms
42,188 KB
testcase_09 AC 139 ms
42,064 KB
testcase_10 AC 130 ms
42,184 KB
testcase_11 AC 135 ms
42,316 KB
testcase_12 AC 100 ms
40,972 KB
testcase_13 AC 120 ms
40,864 KB
testcase_14 AC 142 ms
41,968 KB
testcase_15 AC 133 ms
41,188 KB
testcase_16 AC 131 ms
40,884 KB
testcase_17 AC 157 ms
41,984 KB
testcase_18 AC 132 ms
40,988 KB
testcase_19 AC 128 ms
41,028 KB
testcase_20 AC 143 ms
41,540 KB
testcase_21 AC 140 ms
41,984 KB
testcase_22 AC 129 ms
42,264 KB
testcase_23 AC 119 ms
41,052 KB
testcase_24 AC 132 ms
42,260 KB
testcase_25 AC 136 ms
41,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Arrays;
import java.util.HashSet;
import java.util.Scanner;

class Main {
	public static void main(String[] args) {
		new Main().run();
	}

	void run() {

		Scanner sc = new Scanner(System.in);
		long P = sc.nextLong();
		long Q = sc.nextLong();
		long R = sc.nextLong();
		long A = sc.nextLong();
		long B = sc.nextLong();
		long C = sc.nextLong();
		long min = Math.max(P * (A - 1), Q * (A + B - 1));
		min = Math.max(min, R * (A + B + C - 1));
		long max = Math.min(P * A, Q * (A + B));
		max = Math.min(max, R * (A + B + C));
		if (max - min >= 1) {
			System.out.println((min + 1) + " " + max);
		} else {
			System.out.println(-1);
		}
	}

	void tr(Object... objects) {
		System.out.println(Arrays.deepToString(objects));
	}
}
0