結果

問題 No.3057 A xor B = C
ユーザー 37zigen37zigen
提出日時 2020-04-01 21:24:25
言語 Java21
(openjdk 21)
結果
AC  
実行時間 116 ms / 2,000 ms
コード長 424 bytes
コンパイル時間 2,018 ms
コンパイル使用メモリ 77,292 KB
実行使用メモリ 41,512 KB
最終ジャッジ日時 2024-06-27 08:01:08
合計ジャッジ時間 3,361 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 116 ms
41,180 KB
testcase_01 AC 114 ms
41,308 KB
testcase_02 AC 113 ms
41,512 KB
testcase_03 AC 102 ms
41,184 KB
testcase_04 AC 116 ms
41,252 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