結果

問題 No.920 あかあお
ユーザー poi_kyopropoi_kyopro
提出日時 2019-11-08 21:31:52
言語 Java21
(openjdk 21)
結果
AC  
実行時間 132 ms / 2,000 ms
コード長 453 bytes
コンパイル時間 2,489 ms
コンパイル使用メモリ 74,000 KB
実行使用メモリ 54,268 KB
最終ジャッジ日時 2024-09-23 03:36:45
合計ジャッジ時間 5,180 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
53,948 KB
testcase_01 AC 131 ms
54,228 KB
testcase_02 AC 131 ms
53,960 KB
testcase_03 AC 129 ms
53,812 KB
testcase_04 AC 129 ms
53,956 KB
testcase_05 AC 130 ms
54,068 KB
testcase_06 AC 119 ms
52,660 KB
testcase_07 AC 132 ms
54,172 KB
testcase_08 AC 130 ms
54,268 KB
testcase_09 AC 129 ms
54,184 KB
testcase_10 AC 115 ms
53,056 KB
testcase_11 AC 130 ms
54,148 KB
testcase_12 AC 123 ms
53,032 KB
testcase_13 AC 131 ms
54,240 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {
    public static void main(String args[]){
        Scanner stdIn = new Scanner(System.in);
        int x = stdIn.nextInt();
        int y = stdIn.nextInt();
        int z = stdIn.nextInt();
        
        for(int i = z; i > 0; i--){
            if(x >= y){
                y++;
            }else{
                x++;
            }
        }
        
        System.out.println(Math.min(x, y));
    }
}
0