結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 117 ms
54,200 KB
testcase_01 AC 117 ms
53,516 KB
testcase_02 AC 118 ms
54,080 KB
testcase_03 AC 107 ms
53,008 KB
testcase_04 AC 114 ms
54,248 KB
testcase_05 AC 107 ms
52,932 KB
testcase_06 AC 120 ms
54,248 KB
testcase_07 AC 117 ms
52,804 KB
testcase_08 AC 111 ms
52,936 KB
testcase_09 AC 116 ms
54,064 KB
testcase_10 AC 108 ms
54,184 KB
testcase_11 AC 107 ms
53,144 KB
testcase_12 AC 118 ms
54,208 KB
testcase_13 AC 118 ms
53,756 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