結果

問題 No.411 昇順昇順ソート
ユーザー mbanmban
提出日時 2016-12-29 18:50:10
言語 C#(csc)
(csc 3.9.0)
結果
WA  
実行時間 -
コード長 531 bytes
コンパイル時間 2,638 ms
コンパイル使用メモリ 105,392 KB
実行使用メモリ 27,348 KB
最終ジャッジ日時 2024-05-08 23:56:12
合計ジャッジ時間 3,355 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
24,796 KB
testcase_01 AC 27 ms
22,832 KB
testcase_02 AC 27 ms
26,964 KB
testcase_03 AC 25 ms
23,224 KB
testcase_04 AC 26 ms
27,064 KB
testcase_05 AC 26 ms
25,052 KB
testcase_06 AC 29 ms
25,140 KB
testcase_07 AC 27 ms
26,956 KB
testcase_08 AC 27 ms
27,060 KB
testcase_09 AC 27 ms
25,396 KB
testcase_10 AC 27 ms
27,068 KB
testcase_11 AC 26 ms
25,404 KB
testcase_12 AC 26 ms
25,012 KB
testcase_13 AC 26 ms
25,056 KB
testcase_14 AC 26 ms
25,012 KB
testcase_15 AC 26 ms
24,924 KB
testcase_16 AC 27 ms
24,932 KB
testcase_17 AC 28 ms
27,056 KB
testcase_18 AC 26 ms
25,260 KB
testcase_19 AC 27 ms
26,960 KB
testcase_20 AC 27 ms
27,068 KB
testcase_21 AC 26 ms
25,060 KB
testcase_22 AC 28 ms
24,880 KB
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 26 ms
25,056 KB
testcase_26 AC 26 ms
25,020 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 AC 26 ms
25,148 KB
testcase_30 AC 26 ms
27,200 KB
testcase_31 AC 25 ms
24,932 KB
testcase_32 AC 27 ms
25,008 KB
testcase_33 AC 27 ms
26,944 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.Collections.Specialized;
using System.Text;
using System.Text.RegularExpressions;
using System.Linq;

class Magatro
{

    static void Main()
    {
        int N, K;
        string[] s = Console.ReadLine().Split(' ');
        N = int.Parse(s[0]);
        K = int.Parse(s[1]);
        if (K == 1)
        {
            Console.WriteLine(Math.Pow(2,--N)-N);
            return;
        }
        Console.WriteLine(Math.Pow(2, N - K));
    }
}



0