結果

問題 No.846 メダル
ユーザー tentententen
提出日時 2020-10-09 11:39:12
言語 Java
(openjdk 23)
結果
AC  
実行時間 183 ms / 2,000 ms
コード長 636 bytes
コンパイル時間 3,439 ms
コンパイル使用メモリ 86,004 KB
実行使用メモリ 55,056 KB
最終ジャッジ日時 2024-07-20 06:43:56
合計ジャッジ時間 7,749 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 160 ms
55,004 KB
testcase_01 AC 137 ms
53,956 KB
testcase_02 AC 158 ms
55,056 KB
testcase_03 AC 162 ms
54,692 KB
testcase_04 AC 134 ms
54,192 KB
testcase_05 AC 143 ms
54,176 KB
testcase_06 AC 161 ms
54,680 KB
testcase_07 AC 138 ms
53,976 KB
testcase_08 AC 166 ms
54,552 KB
testcase_09 AC 163 ms
54,896 KB
testcase_10 AC 168 ms
54,908 KB
testcase_11 AC 169 ms
54,716 KB
testcase_12 AC 148 ms
53,800 KB
testcase_13 AC 150 ms
54,060 KB
testcase_14 AC 174 ms
54,760 KB
testcase_15 AC 157 ms
53,752 KB
testcase_16 AC 146 ms
53,976 KB
testcase_17 AC 182 ms
54,928 KB
testcase_18 AC 146 ms
54,280 KB
testcase_19 AC 152 ms
53,972 KB
testcase_20 AC 177 ms
54,868 KB
testcase_21 AC 176 ms
54,692 KB
testcase_22 AC 171 ms
54,816 KB
testcase_23 AC 152 ms
53,636 KB
testcase_24 AC 183 ms
54,872 KB
testcase_25 AC 172 ms
54,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        int p = sc.nextInt();
        int q = sc.nextInt();
        int r = sc.nextInt();
        long a = sc.nextInt();
        long b = sc.nextInt();
        long c = sc.nextInt();
        long max = Math.min(Math.min(a * p, (a + b) * q), (a + b + c) * r);
        long min = Math.max(Math.max((a - 1) * p + 1, (a + b - 1) * q + 1), (a + b + c - 1) * r + 1);
        if (max < min) {
            System.out.println(-1);
        } else {
            System.out.println(min + " " + max);
        }
    }
}
0