結果

問題 No.581 XOR
ユーザー shinwisteria
提出日時 2018-03-04 10:21:14
言語 Java
(openjdk 23)
結果
WA  
実行時間 -
コード長 237 bytes
コンパイル時間 3,223 ms
コンパイル使用メモリ 74,096 KB
実行使用メモリ 54,396 KB
最終ジャッジ日時 2024-07-06 15:29:26
合計ジャッジ時間 5,047 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1
other AC * 4 WA * 4
権限があれば一括ダウンロードができます

ソースコード

diff #

package m.shin;
import java.util.Scanner;
public class Con581 {

	public static void main(String[] args) {
		Scanner s = new Scanner(System.in);
		long A = s.nextLong() , C = s.nextLong();
		s.close();

		System.out.println(C-A);

	}

}
0