結果

問題 No.3057 A xor B = C
ユーザー 37zigen37zigen
提出日時 2020-04-01 21:24:25
言語 Java21
(openjdk 21)
結果
AC  
実行時間 122 ms / 2,000 ms
コード長 424 bytes
コンパイル時間 3,052 ms
コンパイル使用メモリ 72,484 KB
実行使用メモリ 55,780 KB
最終ジャッジ日時 2023-09-09 15:09:46
合計ジャッジ時間 4,174 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 121 ms
55,460 KB
testcase_01 AC 122 ms
55,780 KB
testcase_02 AC 121 ms
55,708 KB
testcase_03 AC 121 ms
55,728 KB
testcase_04 AC 120 ms
55,460 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.math.BigInteger;
import java.util.Arrays;
import java.util.Scanner;

class Main {
	public static void main(String[] args) {
		new Main().run();
	}
	
	void run() {
		Scanner sc=new Scanner(System.in);
		BigInteger a=new BigInteger(sc.next());
		BigInteger b=new BigInteger(sc.next());
		System.out.println("C");
	}
	
	static void tr(Object... objects) {
		System.out.println(Arrays.deepToString(objects));
	}

}

0