結果

問題 No.581 XOR
ユーザー shinwisteriashinwisteria
提出日時 2018-03-04 10:21:14
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 237 bytes
コンパイル時間 3,223 ms
コンパイル使用メモリ 74,096 KB
実行使用メモリ 54,396 KB
最終ジャッジ日時 2024-07-06 15:29:26
合計ジャッジ時間 5,047 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 133 ms
54,036 KB
testcase_01 AC 133 ms
54,212 KB
testcase_02 AC 135 ms
54,020 KB
testcase_03 AC 131 ms
54,268 KB
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 AC 135 ms
54,148 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