結果

問題 No.920 あかあお
ユーザー Hoboteru4484Hoboteru4484
提出日時 2019-11-30 23:40:34
言語 Java21
(openjdk 21)
結果
TLE  
実行時間 -
コード長 1,150 bytes
コンパイル時間 3,940 ms
コンパイル使用メモリ 74,844 KB
実行使用メモリ 68,080 KB
最終ジャッジ日時 2024-05-01 03:24:43
合計ジャッジ時間 9,665 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 -- -
testcase_02 -- -
testcase_03 -- -
testcase_04 -- -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class No920 {
  public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);
    
    int redBall = sc.nextInt();
    int blueBall = sc.nextInt();
    int whiteBall = sc.nextInt();
    int purpleBall = 0 ;
    
    if((redBall + blueBall) == 0){
      purpleBall = whiteBall / 2;
    }else{
        while(redBall > 0 && blueBall > 0){
          redBall--;
         blueBall--;
         purpleBall++;
        }
        while(whiteBall > 0){
            if((redBall + blueBall) > 0){
                if(redBall < blueBall){
                    whiteBall--;
                    blueBall--;
                    purpleBall++;
                }else if (redBall > blueBall){
                    whiteBall--;
                    redBall--;
                    purpleBall++;
                }else {
                    if(whiteBall < 2){
                        break;
                    }else{
                        whiteBall -= 2;
                        purpleBall++;
                    }
                }   
            }
        }
    }
    sc.close();
    System.out.println(purpleBall);
  }
}
0