結果

問題 No.846 メダル
ユーザー tsunabittsunabit
提出日時 2019-08-09 15:53:01
言語 Java
(openjdk 23)
結果
AC  
実行時間 157 ms / 2,000 ms
コード長 781 bytes
コンパイル時間 3,641 ms
コンパイル使用メモリ 79,564 KB
実行使用メモリ 55,100 KB
最終ジャッジ日時 2024-10-07 03:10:35
合計ジャッジ時間 8,317 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 152 ms
54,840 KB
testcase_01 AC 117 ms
53,300 KB
testcase_02 AC 151 ms
54,820 KB
testcase_03 AC 154 ms
54,852 KB
testcase_04 AC 129 ms
54,144 KB
testcase_05 AC 131 ms
54,412 KB
testcase_06 AC 153 ms
55,088 KB
testcase_07 AC 131 ms
53,948 KB
testcase_08 AC 143 ms
54,428 KB
testcase_09 AC 157 ms
54,892 KB
testcase_10 AC 154 ms
54,908 KB
testcase_11 AC 157 ms
54,780 KB
testcase_12 AC 130 ms
54,104 KB
testcase_13 AC 129 ms
53,952 KB
testcase_14 AC 152 ms
54,716 KB
testcase_15 AC 131 ms
54,108 KB
testcase_16 AC 130 ms
54,064 KB
testcase_17 AC 154 ms
54,892 KB
testcase_18 AC 130 ms
54,080 KB
testcase_19 AC 132 ms
53,920 KB
testcase_20 AC 156 ms
54,876 KB
testcase_21 AC 154 ms
55,100 KB
testcase_22 AC 154 ms
54,968 KB
testcase_23 AC 129 ms
54,304 KB
testcase_24 AC 152 ms
54,984 KB
testcase_25 AC 154 ms
55,052 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.io.*;
import java.math.*;

public class No846 {
    public static void main(String[] args) {
    	Scanner sc = new Scanner(System.in);
    	long p = sc.nextLong(), q = sc.nextLong(), r = sc.nextLong();
    	long a = sc.nextLong(), b = sc.nextLong(), c = sc.nextLong();
    	
    	long max = p * a;
    	long min = p * (a - 1);

    	if(max > q * (a + b)) {
    		max = q * (a + b);
    	}
    	if(min < q * (a + b - 1)) {
    		min = q * (a + b - 1);
    	}
    	
    	if(max > r * (a + b + c)) {
    		max = r * (a + b + c);
    	}
    	if(min < r * (a + b + c - 1)) {
    		min = r * (a + b + c - 1);
    	}
    	
    	if(min + 1 <= max) {
    		System.out.println((min + 1) + " " + max);
    	}else {
    		System.out.println(-1);
    	}
    }
}
0