結果

問題 No.920 あかあお
ユーザー d07ki3bq1uzd07ki3bq1uz
提出日時 2019-12-08 21:50:08
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 541 bytes
コンパイル時間 2,190 ms
コンパイル使用メモリ 73,676 KB
実行使用メモリ 41,544 KB
最終ジャッジ日時 2024-06-10 07:09:17
合計ジャッジ時間 4,768 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
41,080 KB
testcase_01 AC 129 ms
40,972 KB
testcase_02 AC 129 ms
41,192 KB
testcase_03 AC 131 ms
41,124 KB
testcase_04 AC 130 ms
41,416 KB
testcase_05 AC 131 ms
41,316 KB
testcase_06 WA -
testcase_07 AC 130 ms
41,180 KB
testcase_08 AC 133 ms
41,440 KB
testcase_09 AC 132 ms
41,096 KB
testcase_10 AC 132 ms
41,512 KB
testcase_11 AC 130 ms
41,352 KB
testcase_12 WA -
testcase_13 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

class Main{
    public static void main (String[] args) {
        /* code */
        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 k = Math.max(r,Z);
                int l = Math.min(r,Z);
                int m = k-l;
                int n = (Z-r)/2;
                
                System.out.println(q+l+n);
    }
}
0