結果

問題 No.1511 A ? B Problem
ユーザー CecilCecil
提出日時 2023-01-12 20:15:03
言語 Java21
(openjdk 21)
結果
AC  
実行時間 124 ms / 2,000 ms
コード長 415 bytes
コンパイル時間 1,908 ms
コンパイル使用メモリ 73,852 KB
実行使用メモリ 41,668 KB
最終ジャッジ日時 2024-06-06 02:33:07
合計ジャッジ時間 4,726 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 124 ms
41,668 KB
testcase_01 AC 123 ms
41,328 KB
testcase_02 AC 101 ms
39,796 KB
testcase_03 AC 106 ms
39,868 KB
testcase_04 AC 107 ms
39,972 KB
testcase_05 AC 118 ms
41,272 KB
testcase_06 AC 118 ms
41,124 KB
testcase_07 AC 117 ms
41,288 KB
testcase_08 AC 117 ms
41,284 KB
testcase_09 AC 120 ms
41,064 KB
testcase_10 AC 120 ms
41,144 KB
testcase_11 AC 117 ms
41,116 KB
testcase_12 AC 118 ms
41,200 KB
testcase_13 AC 123 ms
41,200 KB
testcase_14 AC 123 ms
41,068 KB
testcase_15 AC 124 ms
41,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main {
	public static void main(String args[]) {
		Scanner scan = new Scanner(System.in);

		int a = scan.hasNextInt() ? scan.nextInt() : -1;
		int b = scan.hasNextInt() ? scan.nextInt() : -1;
		if (a > 1000 || a < 0 || b > 1000 || b < 1) {
			System.out.println("入力エラー");
			return;
		}

		int ans = (a | b) - (a & b);

		// 結果出力
		System.out.println(ans);

	}
}
0