結果

問題 No.581 XOR
ユーザー shinwisteriashinwisteria
提出日時 2018-03-04 10:21:14
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 237 bytes
コンパイル時間 2,904 ms
コンパイル使用メモリ 71,008 KB
実行使用メモリ 56,588 KB
最終ジャッジ日時 2023-09-20 20:41:26
合計ジャッジ時間 4,664 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 115 ms
53,652 KB
testcase_01 AC 118 ms
56,076 KB
testcase_02 AC 119 ms
56,028 KB
testcase_03 AC 124 ms
55,712 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 119 ms
55,660 KB
権限があれば一括ダウンロードができます

ソースコード

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