結果

問題 No.2323 Nafmo、A+Bをする
ユーザー bluemeganebluemegane
提出日時 2023-06-03 07:33:29
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 52 ms / 2,000 ms
コード長 267 bytes
コンパイル時間 689 ms
コンパイル使用メモリ 61,096 KB
実行使用メモリ 22,596 KB
最終ジャッジ日時 2023-08-28 07:38:40
合計ジャッジ時間 2,625 ms
ジャッジサーバーID
(参考情報)
judge13 / judge12
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
22,440 KB
testcase_01 AC 52 ms
20,632 KB
testcase_02 AC 51 ms
22,476 KB
testcase_03 AC 51 ms
22,448 KB
testcase_04 AC 52 ms
20,460 KB
testcase_05 AC 50 ms
20,476 KB
testcase_06 AC 51 ms
20,548 KB
testcase_07 AC 51 ms
20,400 KB
testcase_08 AC 51 ms
20,492 KB
testcase_09 AC 50 ms
20,484 KB
testcase_10 AC 51 ms
22,516 KB
testcase_11 AC 50 ms
20,440 KB
testcase_12 AC 51 ms
22,528 KB
testcase_13 AC 51 ms
18,500 KB
testcase_14 AC 52 ms
22,596 KB
testcase_15 AC 51 ms
22,532 KB
testcase_16 AC 50 ms
20,468 KB
testcase_17 AC 51 ms
22,524 KB
testcase_18 AC 50 ms
20,396 KB
testcase_19 AC 51 ms
22,540 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

using System;

public class Hello
{
    static void Main()
    {
        var s = Console.ReadLine().Trim();
        var a = Convert.ToInt32(s, 2);
        s = Console.ReadLine().Trim();
        var b = Convert.ToInt32(s, 2);
        Console.WriteLine(a ^ b);
    }
}
0