結果

問題 No.91 赤、緑、青の石
コンテスト
ユーザー rf141
提出日時 2015-12-20 17:26:04
言語 Java
(openjdk 25.0.2)
コンパイル:
javac -encoding UTF8 _filename_
実行:
java -ea -Xmx700m -Xss256M -DONLINE_JUDGE=true _class_
結果
WA  
実行時間 -
コード長 1,575 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 2,119 ms
コンパイル使用メモリ 82,400 KB
実行使用メモリ 46,764 KB
最終ジャッジ日時 2026-04-06 06:56:18
合計ジャッジ時間 4,362 ms
ジャッジサーバーID
(参考情報)
judge2_1 / judge1_1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample WA * 4
other AC * 2 WA * 27
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

import java.util.*;
import java.math.*;
public class Main{
    public static void main(String... args){
        Scanner scan = new Scanner(System.in);
        int r = scan.nextInt();
        int g = scan.nextInt();
        int b = scan.nextInt();
        System.out.println(Calc(r,g,b));
    }

    public static int Calc(int r,int g,int b){
        int base = Math.max(Math.max(r,g),b);
        int red=r-base,green=g-base,blue=b-base;
        int sum = base;
        while(true){
            if(red == 0){
                if(Math.max(green,blue) > 2){
                    if(blue > green){
                        blue -= 2;
                    }else{
                        green -= 2;
                    }
                }else{
                    break;
                }
                red++;
            }
            if(green == 0){
                if(Math.max(red,blue) > 2){
                    if(blue > red){
                        blue -= 2;
                    }else{
                        red -= 2;
                    }
                }else{
                    break;
                }
                green++;
            }
            if(blue == 0){
                if(Math.max(red,green) > 2){
                    if(green > red){
                        green -= 2;
                    }else{
                        red -= 2;
                    }
                }else{
                    break;
                }
                blue++;
            }
            red--;green--;blue--;
            sum++;
        }
        return sum;

    }
}
0