結果

問題 No.846 メダル
ユーザー GrenacheGrenache
提出日時 2019-07-05 22:32:57
言語 Java21
(openjdk 21)
結果
AC  
実行時間 137 ms / 2,000 ms
コード長 1,054 bytes
コンパイル時間 3,466 ms
コンパイル使用メモリ 77,668 KB
実行使用メモリ 41,696 KB
最終ジャッジ日時 2024-10-06 22:32:12
合計ジャッジ時間 7,992 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
41,052 KB
testcase_01 AC 132 ms
41,184 KB
testcase_02 AC 134 ms
41,376 KB
testcase_03 AC 135 ms
40,992 KB
testcase_04 AC 133 ms
40,828 KB
testcase_05 AC 134 ms
41,048 KB
testcase_06 AC 134 ms
41,696 KB
testcase_07 AC 132 ms
41,268 KB
testcase_08 AC 136 ms
41,400 KB
testcase_09 AC 135 ms
40,924 KB
testcase_10 AC 137 ms
41,348 KB
testcase_11 AC 131 ms
40,984 KB
testcase_12 AC 131 ms
41,016 KB
testcase_13 AC 134 ms
41,288 KB
testcase_14 AC 133 ms
41,392 KB
testcase_15 AC 135 ms
41,012 KB
testcase_16 AC 135 ms
41,048 KB
testcase_17 AC 135 ms
41,256 KB
testcase_18 AC 135 ms
41,060 KB
testcase_19 AC 133 ms
41,308 KB
testcase_20 AC 134 ms
41,572 KB
testcase_21 AC 120 ms
39,896 KB
testcase_22 AC 136 ms
41,148 KB
testcase_23 AC 122 ms
40,024 KB
testcase_24 AC 136 ms
41,452 KB
testcase_25 AC 136 ms
41,320 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.*;
import java.util.Scanner;


public class Main_yukicoder846 {

	private static Scanner sc;
	private static Printer pr;

	private static void solve() {
		long p = sc.nextInt();
		long q = sc.nextInt();
		long r = sc.nextInt();
		long a = sc.nextInt();
		long b = sc.nextInt();
		long c = sc.nextInt();

		long min = p * a - (p - 1);
		long max = p * a;
//		pr.printf("%d %d%n", min, max);
		min = Math.max(min, q * (a + b) - (q - 1));
		max = Math.min(max, q * (a + b));
//		pr.printf("%d %d%n", min, max);
		min = Math.max(min, r * (a + b + c) - (r - 1));
		max = Math.min(max, r * (a + b + c));
//		pr.printf("%d %d%n", min, max);
		
		if (min > max) {
			pr.println(-1);
		} else {
			pr.printf("%d %d%n", min, max);
		}
	}

	// ---------------------------------------------------
	public static void main(String[] args) {
		sc = new Scanner(System.in);
		pr = new Printer(System.out);
			
		solve();
			
		pr.close();
		sc.close();
	}

	static class Printer extends PrintWriter {
		Printer(OutputStream out) {
			super(out);
		}
	}
}
0