結果
問題 | No.581 XOR |
ユーザー |
|
提出日時 | 2017-10-29 04:26:53 |
言語 | Java (openjdk 23) |
結果 |
RE
|
実行時間 | - |
コード長 | 371 bytes |
コンパイル時間 | 3,061 ms |
コンパイル使用メモリ | 74,408 KB |
実行使用メモリ | 50,424 KB |
最終ジャッジ日時 | 2024-11-22 04:39:00 |
合計ジャッジ時間 | 4,143 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 1 |
other | AC * 4 RE * 4 |
ソースコード
import java.io.BufferedReader; import java.io.IOException; import java.io.InputStreamReader; public class No581 { public static void main(String[] args) throws IOException{ String[] str = new BufferedReader(new InputStreamReader(System.in)).readLine().split(" "); int a = Integer.parseInt(str[0]); int c = Integer.parseInt(str[1]); System.out.println(a^c); } }