結果

問題 No.8057 A xor B = C
ユーザー Maeda
提出日時 2025-09-05 16:46:21
言語 Java
(openjdk 23)
結果
RE  
実行時間 -
コード長 312 bytes
コンパイル時間 2,535 ms
コンパイル使用メモリ 76,404 KB
実行使用メモリ 46,652 KB
最終ジャッジ日時 2025-09-05 16:46:26
合計ジャッジ時間 4,095 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
other AC * 4 RE * 1
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
public class Main {
    public static void main(String[] args) {
        // 自分の得意な言語で
        // Let's チャレンジ!!
        Scanner scan = new Scanner(System.in);
        long a = scan.nextLong();
		long b = scan.nextLong();
        System.out.println("C");
    }
}
0