結果

問題 No.581 XOR
ユーザー ohagi_1182
提出日時 2017-10-27 22:34:21
言語 Java
(openjdk 23)
結果
RE  
実行時間 -
コード長 219 bytes
コンパイル時間 2,334 ms
コンパイル使用メモリ 73,896 KB
実行使用メモリ 54,632 KB
最終ジャッジ日時 2024-11-21 21:43:09
合計ジャッジ時間 3,573 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other WA * 6 RE * 2
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.Scanner;

public class Main {

	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		long a = sc.nextLong();
		long c = sc.nextLong();
		System.out.println(c^(1/a));
 	}
}

0