結果

問題 No.91 赤、緑、青の石
ユーザー takeya_okinotakeya_okino
提出日時 2019-08-06 20:50:53
言語 Java21
(openjdk 21)
結果
AC  
実行時間 130 ms / 5,000 ms
コード長 810 bytes
コンパイル時間 2,402 ms
コンパイル使用メモリ 74,992 KB
実行使用メモリ 54,428 KB
最終ジャッジ日時 2024-06-24 07:20:30
合計ジャッジ時間 6,997 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
54,428 KB
testcase_01 AC 116 ms
53,084 KB
testcase_02 AC 125 ms
54,224 KB
testcase_03 AC 116 ms
53,168 KB
testcase_04 AC 125 ms
54,128 KB
testcase_05 AC 117 ms
52,976 KB
testcase_06 AC 125 ms
54,052 KB
testcase_07 AC 123 ms
54,136 KB
testcase_08 AC 128 ms
54,424 KB
testcase_09 AC 127 ms
54,140 KB
testcase_10 AC 129 ms
53,920 KB
testcase_11 AC 130 ms
54,260 KB
testcase_12 AC 129 ms
53,996 KB
testcase_13 AC 128 ms
54,116 KB
testcase_14 AC 119 ms
53,056 KB
testcase_15 AC 125 ms
54,156 KB
testcase_16 AC 129 ms
54,128 KB
testcase_17 AC 125 ms
53,852 KB
testcase_18 AC 115 ms
52,700 KB
testcase_19 AC 116 ms
52,908 KB
testcase_20 AC 129 ms
54,108 KB
testcase_21 AC 126 ms
54,032 KB
testcase_22 AC 129 ms
54,000 KB
testcase_23 AC 128 ms
54,160 KB
testcase_24 AC 128 ms
54,096 KB
testcase_25 AC 128 ms
54,052 KB
testcase_26 AC 113 ms
53,048 KB
testcase_27 AC 125 ms
54,260 KB
testcase_28 AC 116 ms
53,012 KB
testcase_29 AC 124 ms
53,900 KB
testcase_30 AC 126 ms
54,140 KB
testcase_31 AC 128 ms
54,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
  public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);
    int R = sc.nextInt();
    int G = sc.nextInt();
    int B = sc.nextInt();
    int ans = 0;
    int l = 0;
    int r = 10000001;
    while(l < r) {
      int med = (l + r) / 2;
      int plus = 0;
      int minus = 0;
      if(R >= med) {
        plus += ((R - med) / 2);
      } else {
        minus += (med - R);
      }

      if(G >= med) {
        plus += ((G - med) / 2);
      } else {
        minus += (med - G);
      }

      if(B >= med) {
        plus += ((B - med) / 2);
      } else {
        minus += (med - B);
      }

      if(plus >= minus) {
        ans = med;
        l = med + 1;
      } else {
        r = med;
      }
    }
    System.out.println(ans);
  }
}
0