結果

問題 No.920 あかあお
ユーザー d07ki3bq1uzd07ki3bq1uz
提出日時 2019-12-08 22:03:31
言語 Java21
(openjdk 21)
結果
AC  
実行時間 115 ms / 2,000 ms
コード長 576 bytes
コンパイル時間 4,200 ms
コンパイル使用メモリ 73,604 KB
実行使用メモリ 54,788 KB
最終ジャッジ日時 2024-06-10 07:51:24
合計ジャッジ時間 5,726 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 112 ms
53,920 KB
testcase_01 AC 111 ms
53,852 KB
testcase_02 AC 115 ms
53,848 KB
testcase_03 AC 112 ms
53,860 KB
testcase_04 AC 110 ms
54,048 KB
testcase_05 AC 103 ms
52,616 KB
testcase_06 AC 103 ms
54,788 KB
testcase_07 AC 114 ms
53,936 KB
testcase_08 AC 111 ms
53,764 KB
testcase_09 AC 112 ms
53,716 KB
testcase_10 AC 114 ms
54,092 KB
testcase_11 AC 98 ms
52,536 KB
testcase_12 AC 100 ms
52,732 KB
testcase_13 AC 114 ms
54,220 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main{
    public static void main (String[] args) {
        
        Scanner s = new Scanner(System.in);
        int X =s.nextInt();
        int Y =s.nextInt();
        int Z =s.nextInt();
            int p = Math.max(X,Y);
            int q = Math.min(X,Y);
            int r = p-q;

                int m,n;
                if (r <= Z) {
                     m = r;
                     n = (Z-r)/2;
                }else{
                     m = Z;
                     n = 0;
                }
                System.out.println(q+m+n);
    }
}
0