結果

問題 No.846 メダル
ユーザー ks2mks2m
提出日時 2019-07-05 21:39:26
言語 Java
(openjdk 23)
結果
AC  
実行時間 159 ms / 2,000 ms
コード長 794 bytes
コンパイル時間 2,225 ms
コンパイル使用メモリ 79,276 KB
実行使用メモリ 55,152 KB
最終ジャッジ日時 2024-10-06 21:14:58
合計ジャッジ時間 7,014 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 4
other AC * 22
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
	public static void main(String[] args) throws Exception {
		Scanner sc = new Scanner(System.in);
		long p = sc.nextInt();
		long q = sc.nextInt();
		long r = sc.nextInt();
		long a = sc.nextInt();
		long b = sc.nextInt();
		long c = sc.nextInt();
		sc.close();

		long[] min = new long[3];
		long[] max = new long[3];
		min[0] = (a - 1) * p + 1;
		max[0] = a * p;
		min[1] = (a + b - 1) * q + 1;
		max[1] = (a + b) * q;
		min[2] = (a + b + c - 1) * r + 1;
		max[2] = (a + b + c) * r;

		long ans1 = 0;
		long ans2 = Long.MAX_VALUE;
		for (int i = 0; i < 3; i++) {
			ans1 = Math.max(ans1, min[i]);
			ans2 = Math.min(ans2, max[i]);
		}
		if (ans1 > ans2) {
			System.out.println(-1);
		} else {
			System.out.println(ans1 + " " + ans2);
		}
	}
}
0