結果

問題 No.846 メダル
ユーザー threepipes_sthreepipes_s
提出日時 2019-07-05 22:05:04
言語 Java21
(openjdk 21)
結果
AC  
実行時間 95 ms / 2,000 ms
コード長 3,489 bytes
コンパイル時間 3,112 ms
コンパイル使用メモリ 94,312 KB
実行使用メモリ 40,312 KB
最終ジャッジ日時 2024-04-16 07:22:08
合計ジャッジ時間 6,214 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 92 ms
40,248 KB
testcase_01 AC 58 ms
37,648 KB
testcase_02 AC 93 ms
39,892 KB
testcase_03 AC 91 ms
40,300 KB
testcase_04 AC 57 ms
37,524 KB
testcase_05 AC 55 ms
37,248 KB
testcase_06 AC 90 ms
40,200 KB
testcase_07 AC 56 ms
37,484 KB
testcase_08 AC 93 ms
40,300 KB
testcase_09 AC 92 ms
39,956 KB
testcase_10 AC 92 ms
40,312 KB
testcase_11 AC 93 ms
39,936 KB
testcase_12 AC 58 ms
37,480 KB
testcase_13 AC 58 ms
37,260 KB
testcase_14 AC 94 ms
39,904 KB
testcase_15 AC 57 ms
37,468 KB
testcase_16 AC 61 ms
37,568 KB
testcase_17 AC 95 ms
39,936 KB
testcase_18 AC 58 ms
37,480 KB
testcase_19 AC 58 ms
37,280 KB
testcase_20 AC 95 ms
40,136 KB
testcase_21 AC 92 ms
40,208 KB
testcase_22 AC 92 ms
40,108 KB
testcase_23 AC 56 ms
37,612 KB
testcase_24 AC 91 ms
40,156 KB
testcase_25 AC 92 ms
39,968 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.BufferedWriter;
import java.io.Closeable;
import java.io.FileInputStream;
import java.io.FileWriter;
import java.io.IOException;
import java.io.InputStreamReader;
import java.io.PrintWriter;
import java.lang.reflect.Array;
import java.util.*;

public class Main implements Runnable {
    static ContestScanner in;
    static Writer out;
    public static void main(String[] args) {
        new Thread(null, new Main(), "", 16 * 1024 * 1024).start();
    }

    public void run() {
        Main main = new Main();
        try {
            in = new ContestScanner();
            out = new Writer();
            main.solve();
            out.close();
            in.close();
        } catch (IOException e) {
            e.printStackTrace();
        }
    }

    void solve() throws IOException {
        long p = in.nextLong();
        long q = in.nextLong();
        long r = in.nextLong();
        long a = in.nextLong();
        long b = in.nextLong();
        long c = in.nextLong();
        long cand = a + b + c;
        long max = cand * r;
        long min = (cand - 1) * r + 1;
        cand -= c;
        max = Math.min(max, cand * q);
        min = Math.max(min, (cand - 1) * q + 1);
        cand -= b;
        max = Math.min(max, cand * p);
        min = Math.max(min, (cand - 1) * p + 1);
        if (min > max) {
            System.out.println(-1);
        } else {
            System.out.println(min + " " + max);
        }
    }
}


@SuppressWarnings("serial")
class MultiSet<T> extends HashMap<T, Integer>{
    @Override public Integer get(Object key){return containsKey(key)?super.get(key):0;}
    public void add(T key,int v){put(key,get(key)+v);}
    public void add(T key){put(key,get(key)+1);}
    public void sub(T key){final int v=get(key);if(v==1)remove(key);else put(key,v-1);}
    public MultiSet<T> merge(MultiSet<T> set)
    {MultiSet<T>s,l;if(this.size()<set.size()){s=this;l=set;}else{s=set;l=this;}
        for(Entry<T,Integer>e:s.entrySet())l.add(e.getKey(),e.getValue());return l;}
}

class Writer extends PrintWriter{
    public Writer(String filename)throws IOException
    {super(new BufferedWriter(new FileWriter(filename)));}
    public Writer()throws IOException{super(System.out);}
}
class ContestScanner implements Closeable{
    private BufferedReader in;private int c=-2;
    public ContestScanner()throws IOException
    {in=new BufferedReader(new InputStreamReader(System.in));}
    public ContestScanner(String filename)throws IOException
    {in=new BufferedReader(new InputStreamReader(new FileInputStream(filename)));}
    public String nextToken()throws IOException {
        StringBuilder sb=new StringBuilder();
        while((c=in.read())!=-1&&Character.isWhitespace(c));
        while(c!=-1&&!Character.isWhitespace(c)){sb.append((char)c);c=in.read();}
        return sb.toString();
    }
    public String readLine()throws IOException{
        StringBuilder sb=new StringBuilder();if(c==-2)c=in.read();
        while(c!=-1&&c!='\n'&&c!='\r'){sb.append((char)c);c=in.read();}
        return sb.toString();
    }
    public long nextLong()throws IOException,NumberFormatException
    {return Long.parseLong(nextToken());}
    public int nextInt()throws NumberFormatException,IOException
    {return(int)nextLong();}
    public double nextDouble()throws NumberFormatException,IOException
    {return Double.parseDouble(nextToken());}
    public void close() throws IOException {in.close();}
}
0