結果

問題 No.1372 Median of Submasks
ユーザー keymoonkeymoon
提出日時 2021-02-05 21:21:09
言語 C#(csc)
(csc 3.9.0)
結果
AC  
実行時間 58 ms / 2,000 ms
コード長 770 bytes
コンパイル時間 3,741 ms
コンパイル使用メモリ 103,540 KB
実行使用メモリ 22,824 KB
最終ジャッジ日時 2023-09-15 06:58:25
合計ジャッジ時間 4,676 ms
ジャッジサーバーID
(参考情報)
judge11 / judge13
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 54 ms
22,780 KB
testcase_01 AC 54 ms
22,612 KB
testcase_02 AC 54 ms
18,716 KB
testcase_03 AC 54 ms
22,780 KB
testcase_04 AC 54 ms
20,640 KB
testcase_05 AC 55 ms
20,764 KB
testcase_06 AC 54 ms
22,720 KB
testcase_07 AC 56 ms
20,644 KB
testcase_08 AC 56 ms
22,804 KB
testcase_09 AC 55 ms
20,668 KB
testcase_10 AC 56 ms
20,796 KB
testcase_11 AC 54 ms
20,636 KB
testcase_12 AC 55 ms
20,628 KB
testcase_13 AC 54 ms
18,692 KB
testcase_14 AC 55 ms
20,624 KB
testcase_15 AC 55 ms
20,692 KB
testcase_16 AC 55 ms
20,584 KB
testcase_17 AC 55 ms
22,816 KB
testcase_18 AC 54 ms
20,728 KB
testcase_19 AC 55 ms
20,876 KB
testcase_20 AC 54 ms
20,652 KB
testcase_21 AC 58 ms
22,824 KB
testcase_22 AC 55 ms
20,704 KB
testcase_23 AC 55 ms
22,728 KB
testcase_24 AC 54 ms
20,700 KB
testcase_25 AC 54 ms
20,684 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
Microsoft (R) Visual C# Compiler version 3.9.0-6.21124.20 (db94f4cc)
Copyright (C) Microsoft Corporation. All rights reserved.

ソースコード

diff #

using System;
using System.Collections;
using System.Collections.Generic;
using System.Diagnostics;
using System.IO;
using System.Linq;
using System.Numerics;
using System.Text;
using System.Text.RegularExpressions;
using System.Threading.Tasks;
using static System.Math;
using MethodImplAttribute = System.Runtime.CompilerServices.MethodImplAttribute;
using MethodImplOptions = System.Runtime.CompilerServices.MethodImplOptions;
public static class P
{
    public static void Main()
    {
        var n = long.Parse(Console.ReadLine());
        Console.WriteLine(MSB(n));
    }

    [MethodImpl(MethodImplOptions.AggressiveInlining)]
    static long MSB(long s) { s |= s >> 1; s |= s >> 2; s |= s >> 4; s |= s >> 8; s |= s >> 16; s |= s >> 32; return (s + 1) >> 1; }
}
0