結果

問題 No.581 XOR
ユーザー sudo_yumsudo_yum
提出日時 2018-05-25 14:45:42
言語 Java21
(openjdk 21)
結果
AC  
実行時間 122 ms / 2,000 ms
コード長 306 bytes
コンパイル時間 3,344 ms
コンパイル使用メモリ 74,216 KB
実行使用メモリ 41,336 KB
最終ジャッジ日時 2024-06-28 17:59:39
合計ジャッジ時間 3,468 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 98 ms
39,588 KB
testcase_01 AC 112 ms
41,272 KB
testcase_02 AC 111 ms
41,220 KB
testcase_03 AC 107 ms
41,096 KB
testcase_04 AC 109 ms
41,156 KB
testcase_05 AC 99 ms
39,864 KB
testcase_06 AC 122 ms
41,336 KB
testcase_07 AC 115 ms
41,172 KB
testcase_08 AC 117 ms
41,260 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.*;

public class Main{
  static StringBuilder sb = new StringBuilder("");
  public static void main(String[] args) {
    Scanner sc = new Scanner(System.in);
    long A =sc.nextLong();
    long B =sc.nextLong();
    sc.close();
    long result = A^B;
    System.out.println(result);
  }
}
0