結果
問題 | No.581 XOR |
ユーザー | mlpj56d |
提出日時 | 2017-11-27 04:09:50 |
言語 | JavaScript (node v21.7.1) |
結果 |
RE
|
実行時間 | - |
コード長 | 232 bytes |
コンパイル時間 | 76 ms |
コンパイル使用メモリ | 6,820 KB |
実行使用メモリ | 41,460 KB |
最終ジャッジ日時 | 2024-10-13 00:27:12 |
合計ジャッジ時間 | 1,314 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | RE | - |
testcase_01 | RE | - |
testcase_02 | RE | - |
testcase_03 | RE | - |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
ソースコード
function Main (input) { var line = input.split(" "); var A = line[0].parseInt(2); var C = line[1].parseInt(2); var B = ""; B = C ^ A; console.log(B); } Main(require("fs").readFileSync("/dev/stdin","utf8"));