結果
| 問題 | No.91 赤、緑、青の石 |
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2015-12-20 17:28:01 |
| 言語 | Java (openjdk 23) |
| 結果 |
AC
|
| 実行時間 | 127 ms / 5,000 ms |
| コード長 | 993 bytes |
| 記録 | |
| コンパイル時間 | 1,928 ms |
| コンパイル使用メモリ | 80,068 KB |
| 実行使用メモリ | 46,880 KB |
| 最終ジャッジ日時 | 2025-12-07 12:24:16 |
| 合計ジャッジ時間 | 6,674 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 29 |
ソースコード
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.min(Math.min(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;
}
}