結果

問題 No.920 あかあお
ユーザー Hoboteru4484Hoboteru4484
提出日時 2019-11-30 23:52:06
言語 Java21
(openjdk 21)
結果
AC  
実行時間 136 ms / 2,000 ms
コード長 503 bytes
コンパイル時間 3,448 ms
コンパイル使用メモリ 74,600 KB
実行使用メモリ 54,228 KB
最終ジャッジ日時 2024-11-21 03:44:46
合計ジャッジ時間 5,862 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
54,152 KB
testcase_01 AC 129 ms
53,820 KB
testcase_02 AC 130 ms
53,796 KB
testcase_03 AC 129 ms
54,108 KB
testcase_04 AC 129 ms
54,052 KB
testcase_05 AC 131 ms
54,160 KB
testcase_06 AC 131 ms
53,896 KB
testcase_07 AC 130 ms
54,096 KB
testcase_08 AC 133 ms
54,164 KB
testcase_09 AC 115 ms
52,952 KB
testcase_10 AC 132 ms
54,080 KB
testcase_11 AC 136 ms
53,968 KB
testcase_12 AC 131 ms
54,228 KB
testcase_13 AC 132 ms
54,128 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;
import java.lang.Math;

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();
    
    sc.close();

    while(whiteBall > 0){
      if(redBall > blueBall){
        blueBall++;
      }else if(redBall <= blueBall){
        redBall++;
      }
      whiteBall--;
    }
    System.out.println(Math.min(redBall,blueBall));
  }
}
0