結果

問題 No.920 あかあお
ユーザー iwa_choco_168iwa_choco_168
提出日時 2019-12-01 22:04:17
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 419 bytes
コンパイル時間 2,091 ms
コンパイル使用メモリ 74,580 KB
実行使用メモリ 41,440 KB
最終ジャッジ日時 2024-11-21 19:51:00
合計ジャッジ時間 4,401 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 104 ms
39,880 KB
testcase_01 AC 118 ms
40,768 KB
testcase_02 AC 120 ms
41,440 KB
testcase_03 AC 114 ms
40,800 KB
testcase_04 AC 116 ms
41,432 KB
testcase_05 AC 103 ms
39,860 KB
testcase_06 WA -
testcase_07 AC 115 ms
40,808 KB
testcase_08 AC 116 ms
41,052 KB
testcase_09 AC 105 ms
39,668 KB
testcase_10 AC 116 ms
41,176 KB
testcase_11 AC 120 ms
40,840 KB
testcase_12 WA -
testcase_13 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
        
        //入力
        int x = Integer.parseInt(sc.next());
        int y = Integer.parseInt(sc.next());
        int z = Integer.parseInt(sc.next());
        
        //処理
        int ans = (x + y + z) / 2;
        
        //出力
        System.out.println(ans);
    }
}
0