結果
| 問題 |
No.91 赤、緑、青の石
|
| コンテスト | |
| ユーザー |
|
| 提出日時 | 2015-12-20 17:21:01 |
| 言語 | Java (openjdk 23) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 937 bytes |
| コンパイル時間 | 2,512 ms |
| コンパイル使用メモリ | 77,288 KB |
| 実行使用メモリ | 54,412 KB |
| 最終ジャッジ日時 | 2024-09-17 12:18:11 |
| 合計ジャッジ時間 | 6,841 ms |
|
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 4 |
| other | AC * 25 WA * 3 |
ソースコード
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 red=r,green=g,blue=b;
int sum = 0;
while(true){
if(red == 0){
if(Math.max(green,blue) > 2){
if(blue > green){
blue -= 2;
}else{
green -= 2;
}
}else{
break;
}
red++;
}else if(green == 0){
if(Math.max(red,blue) > 2){
if(blue > red){
blue -= 2;
}else{
red -= 2;
}
}else{
break;
}
green++;
}else 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;
}
}