結果

問題 No.939 and or
ユーザー bluemeganebluemegane
提出日時 2021-04-26 15:08:49
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 28 ms / 2,000 ms
コード長 883 bytes
コンパイル時間 884 ms
コンパイル使用メモリ 104,192 KB
実行使用メモリ 27,196 KB
最終ジャッジ日時 2024-07-05 00:02:44
合計ジャッジ時間 2,604 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
25,008 KB
testcase_01 AC 25 ms
21,940 KB
testcase_02 AC 28 ms
24,892 KB
testcase_03 AC 25 ms
23,896 KB
testcase_04 AC 27 ms
27,196 KB
testcase_05 AC 24 ms
23,708 KB
testcase_06 AC 27 ms
26,960 KB
testcase_07 AC 27 ms
24,900 KB
testcase_08 AC 27 ms
25,312 KB
testcase_09 AC 24 ms
23,860 KB
testcase_10 AC 27 ms
26,948 KB
testcase_11 AC 26 ms
22,836 KB
testcase_12 AC 27 ms
25,436 KB
testcase_13 AC 24 ms
24,096 KB
testcase_14 AC 27 ms
25,024 KB
testcase_15 AC 28 ms
27,084 KB
testcase_16 AC 25 ms
23,988 KB
testcase_17 AC 27 ms
22,836 KB
testcase_18 AC 27 ms
25,416 KB
testcase_19 AC 26 ms
24,880 KB
testcase_20 AC 25 ms
24,112 KB
testcase_21 AC 27 ms
24,792 KB
testcase_22 AC 25 ms
23,772 KB
testcase_23 AC 27 ms
25,052 KB
testcase_24 AC 28 ms
25,012 KB
testcase_25 AC 27 ms
22,836 KB
testcase_26 AC 27 ms
25,136 KB
testcase_27 AC 27 ms
25,268 KB
testcase_28 AC 27 ms
26,864 KB
testcase_29 AC 25 ms
23,972 KB
testcase_30 AC 25 ms
23,856 KB
testcase_31 AC 24 ms
21,688 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using static System.Math;
using System;

public class Hello
{
    public static long a, b;
    static void Main()
    {
        string[] line = Console.ReadLine().Trim().Split(' ');
        a = long.Parse(line[0]);
        b = long.Parse(line[1]);
        getAns();
    }
    static bool check(long t, int p) => ((t >> p) & 1) == 1;
    static void getAns()
    {
        var x = 1L;
        var imax = 0;
        var abmax = Max(a, b);
        for (int i = 0; i < 32; i++)
        {
            if (x >= abmax) { imax = i; break; }
            x *= 2;
        }
        var count = 0;
        for (int i = 0; i < imax; i++)
        {
            if (check(a, i) && !check(b, i)) { Console.WriteLine(0); return; }
            if (!check(a, i) && check(b, i)) count++;
        }
        if (count <= 1) Console.WriteLine(1);
        else Console.WriteLine(Pow(2, count - 1));
    }
}
0