結果

問題 No.91 赤、緑、青の石
ユーザー kitakitalilykitakitalily
提出日時 2019-05-25 19:48:33
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 4,444 bytes
コンパイル時間 2,782 ms
コンパイル使用メモリ 79,164 KB
実行使用メモリ 61,836 KB
最終ジャッジ日時 2023-10-17 17:46:03
合計ジャッジ時間 8,925 ms
ジャッジサーバーID
(参考情報)
judge15 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 136 ms
61,388 KB
testcase_01 AC 139 ms
61,520 KB
testcase_02 AC 138 ms
61,500 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 AC 135 ms
61,628 KB
testcase_07 AC 140 ms
61,556 KB
testcase_08 AC 135 ms
61,696 KB
testcase_09 WA -
testcase_10 AC 139 ms
61,692 KB
testcase_11 AC 137 ms
61,564 KB
testcase_12 AC 137 ms
61,524 KB
testcase_13 AC 136 ms
61,440 KB
testcase_14 AC 132 ms
59,652 KB
testcase_15 AC 138 ms
61,564 KB
testcase_16 AC 138 ms
61,716 KB
testcase_17 AC 136 ms
61,800 KB
testcase_18 AC 132 ms
61,536 KB
testcase_19 AC 130 ms
61,532 KB
testcase_20 AC 133 ms
61,812 KB
testcase_21 AC 132 ms
61,228 KB
testcase_22 AC 134 ms
61,716 KB
testcase_23 AC 136 ms
61,268 KB
testcase_24 AC 138 ms
61,804 KB
testcase_25 AC 133 ms
61,696 KB
testcase_26 WA -
testcase_27 AC 133 ms
61,224 KB
testcase_28 AC 133 ms
61,760 KB
testcase_29 AC 137 ms
61,764 KB
testcase_30 AC 136 ms
61,692 KB
testcase_31 AC 135 ms
61,532 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	static int mod = 1000000007;
  static int size = 200000;
	static long[] fac = new long[size];
	static long[] finv = new long[size];
	static long[] inv = new long[size];
  static int INF = Integer.MAX_VALUE;

 	public static void main(String[] args){
		Scanner scanner = new Scanner(System.in);
		int r = scanner.nextInt();
		int g = scanner.nextInt();
		int b = scanner.nextInt();
		int left = 0;
		int right = 10000100;
		while(right - left > 1){
			int mid = (left+right)/2;
			if(check(mid, r, g, b)){
				left = mid;
			}else{
				right = mid;
			}
		}
		System.out.println(left);
	}
	//x個のアクセサリーを作ることができるか?
	public static boolean check(int x, int r, int b, int g){
		int[] p = {r, g, b};
		Arrays.sort(p);
		if(p[0] >= x && p[1] >= x && p[2] >= x){
			return true;
		}else if(p[0] < x && p[1] >= x && p[2] >= x){
			if(p[1]-x+p[2]-x >= 2*(x-p[0])){
				return true;
			}else{
				return false;
			}
		}else if(p[0] < x && p[1] < x && p[2] >= x){
			if(p[2]-x >= (x-p[0])*2+(x-p[1])*2){
				return true;
			}else{
				return false;
			}
		}else if(p[0] < x && p[1] < x && p[2] < x){
			return false;
		}
		return false;
	}
	public static class Edge{
		int to;
		int cost;
		Edge(int to, int cost){
			this.to = to;
			this.cost = cost;
		}
	}
  static class Pair implements Comparable<Pair>{
    int x, y;
    Pair(int a, int b){
        x = a;
        y = b;
    }
    @Override
    public boolean equals(Object o){
        if (this == o) return true;
        if (!(o instanceof Pair)) return false;
        Pair p = (Pair) o;
        return x == p.x && y == p.y;
    }
    @Override
    public int compareTo(Pair p){
        return x == p.x ? y - p.y : x - p.x; //xで昇順にソート
        //return (x == p.x ? y - p.y : x - p.x) * -1; //xで降順にソート
        //return y == p.y ? x - p.x : y - p.y;//yで昇順にソート
        //return (y == p.y ? x - p.x : y - p.y)*-1;//yで降順にソート
    }
  }
  //繰り返し二乗法
  public static long pow(long x, long n){
    long ans = 1;
    while(n > 0){
      if((n & 1) == 1){
        ans = ans * x;
        ans %= mod;
      }
      x = x * x % mod;
      n >>= 1;
    }
    return ans;
  }

  //fac, inv, finvテーブルの初期化、これ使う場合はinitComb()で初期化必要
	public static  void initComb(){
		fac[0] = finv[0] = inv[0] = fac[1] = finv[1] = inv[1] = 1;
		for (int i = 2; i < size; ++i) {
			fac[i] = fac[i - 1] * i % mod;
			inv[i] = mod - (mod / i) * inv[(int) (mod % i)] % mod;
			finv[i] = finv[i - 1] * inv[i] % mod;
		}
	}

	//nCk % mod
	public static long comb(int n, int k){
		return fac[n] * finv[k] % mod * finv[n - k] % mod;
	}

	//n! % mod
	public static long fact(int n){
		return fac[n];
	}

	//(n!)^-1 with % mod
	public static long finv(int n){
		return finv[n];
	}

  static class UnionFind {
    int[] parent;
    public UnionFind(int size) {
      parent = new int[size];
      Arrays.fill(parent, -1);
    }
    public boolean unite(int x, int y) {
      x = root(x);
      y = root(y);
      if (x != y) {
        if (parent[y] < parent[x]) {
          int tmp = y;
          y = x;
          x = tmp;
        }
        parent[x] += parent[y];
        parent[y] = x;
        return true;
      }
      return false;
    }
    public boolean same(int x, int y) {
      return root(x) == root(y);
    }
    public int root(int x) {
      return parent[x] < 0 ? x : (parent[x] = root(parent[x]));
    }
    public int size(int x) {
      return -parent[root(x)];
    }
  }
	public static int upperBound(long[] array, long value) {
			 int low = 0;
			 int high = array.length;
			 int mid;
			 while( low < high ) {
					 mid = ((high - low) >>> 1) + low; // (high + low) / 2
					 if( array[mid] <= value ) {
							 low = mid + 1;
					 } else {
							 high = mid;
					 }
			 }
			 return low;
	 }
	 public static final int lowerBound(final long[] arr, final long value) {
    int low = 0;
    int high = arr.length;
    int mid;
    while (low < high) {
        mid = ((high - low) >>> 1) + low;    //(low + high) / 2 (オーバーフロー対策)
        if (arr[mid] < value) {
            low = mid + 1;
        } else {
            high = mid;
        }
    }
    return low;
}
  //n,mの最大公約数
  public static int gcd(int n, int m){
    if(m > n) return gcd(m,n);
    if(m == 0) return n;
    return gcd(m, n%m);
  }
}
0