結果

問題 No.581 XOR
ユーザー tsunabittsunabit
提出日時 2018-07-15 02:05:59
言語 Java21
(openjdk 21)
結果
WA  
実行時間 -
コード長 292 bytes
コンパイル時間 3,398 ms
コンパイル使用メモリ 75,292 KB
実行使用メモリ 54,196 KB
最終ジャッジ日時 2024-10-12 22:08:17
合計ジャッジ時間 5,357 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 134 ms
53,692 KB
testcase_01 AC 133 ms
54,116 KB
testcase_02 AC 133 ms
54,164 KB
testcase_03 AC 132 ms
53,832 KB
testcase_04 WA -
testcase_05 RE -
testcase_06 RE -
testcase_07 RE -
testcase_08 RE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;
import java.util.stream.Stream;
import java.time.*;
import java.time.format.*;

public class No581 {
    public static void main(String[] args) {
        Scanner sc = new Scanner(System.in);
		int a = sc.nextInt();
		int c = sc.nextInt();
		System.out.println(c - a);
	}
}
0