結果

問題 No.91 赤、緑、青の石
ユーザー kenji_shioyakenji_shioya
提出日時 2016-07-01 03:50:33
言語 Java21
(openjdk 21)
結果
AC  
実行時間 161 ms / 5,000 ms
コード長 706 bytes
コンパイル時間 3,385 ms
コンパイル使用メモリ 74,604 KB
実行使用メモリ 54,552 KB
最終ジャッジ日時 2024-06-24 06:59:24
合計ジャッジ時間 9,449 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 153 ms
54,352 KB
testcase_01 AC 154 ms
54,116 KB
testcase_02 AC 148 ms
54,436 KB
testcase_03 AC 154 ms
54,356 KB
testcase_04 AC 152 ms
54,488 KB
testcase_05 AC 161 ms
54,048 KB
testcase_06 AC 149 ms
54,140 KB
testcase_07 AC 131 ms
53,884 KB
testcase_08 AC 130 ms
53,932 KB
testcase_09 AC 139 ms
54,268 KB
testcase_10 AC 134 ms
54,172 KB
testcase_11 AC 154 ms
53,884 KB
testcase_12 AC 161 ms
54,084 KB
testcase_13 AC 160 ms
54,336 KB
testcase_14 AC 155 ms
54,552 KB
testcase_15 AC 159 ms
53,956 KB
testcase_16 AC 134 ms
53,996 KB
testcase_17 AC 132 ms
54,120 KB
testcase_18 AC 133 ms
53,816 KB
testcase_19 AC 130 ms
53,976 KB
testcase_20 AC 133 ms
53,952 KB
testcase_21 AC 151 ms
53,880 KB
testcase_22 AC 148 ms
54,124 KB
testcase_23 AC 150 ms
53,860 KB
testcase_24 AC 134 ms
53,884 KB
testcase_25 AC 155 ms
54,132 KB
testcase_26 AC 150 ms
53,188 KB
testcase_27 AC 131 ms
54,364 KB
testcase_28 AC 145 ms
54,084 KB
testcase_29 AC 145 ms
54,180 KB
testcase_30 AC 157 ms
54,180 KB
testcase_31 AC 158 ms
54,500 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Exercise140{
  public static void main (String[] args){

    Scanner sc = new Scanner(System.in);

    int r = sc.nextInt();
    int g = sc.nextInt();
    int b = sc.nextInt();

    while(Math.abs(r - g) > 1 || Math.abs(r - b) > 1) {
      int biggest = Math.max(Math.max(r, g), b);
      int smallest = Math.min(Math.min(r, g), b);
      if(biggest == r){
        r -= 2;
      }else if(biggest == g){
        g -= 2;
      }else if(biggest == b){
        b -= 2;
      }

      if(smallest == r){
        r++;
      }else if(smallest == g){
        g++;
      }else if(smallest == b){
        b++;
      }
    }
    System.out.println(Math.min(Math.min(r, g), b));
  }
}
0