結果

問題 No.3062 A + B
ユーザー ks2mks2m
提出日時 2020-04-01 22:03:30
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 380 bytes
コンパイル時間 2,845 ms
コンパイル使用メモリ 74,376 KB
実行使用メモリ 50,272 KB
最終ジャッジ日時 2024-06-27 10:55:26
合計ジャッジ時間 3,660 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 52 ms
37,056 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 53 ms
36,860 KB
testcase_09 WA -
testcase_10 AC 53 ms
36,680 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.io.BufferedReader;
import java.io.InputStreamReader;

public class Main {
	public static void main(String[] args) throws Exception {
		BufferedReader br = new BufferedReader(new InputStreamReader(System.in));
		String[] sa = br.readLine().split(" ");
		long a = Long.parseLong(sa[0]);
		long b = Long.parseLong(sa[1]);
		br.close();

		System.out.println(a | b);
	}
}
0