結果

問題 No.411 昇順昇順ソート
ユーザー ThetaTheta
提出日時 2023-11-21 18:07:11
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,019 ms / 2,000 ms
コード長 556 bytes
コンパイル時間 306 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 56,784 KB
最終ジャッジ日時 2024-09-26 07:17:39
合計ジャッジ時間 35,238 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
外部呼び出し有り
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 937 ms
55,884 KB
testcase_01 AC 961 ms
56,144 KB
testcase_02 AC 945 ms
55,900 KB
testcase_03 AC 929 ms
55,892 KB
testcase_04 AC 949 ms
56,016 KB
testcase_05 AC 916 ms
56,016 KB
testcase_06 AC 948 ms
56,020 KB
testcase_07 AC 952 ms
56,016 KB
testcase_08 AC 943 ms
56,016 KB
testcase_09 AC 941 ms
56,540 KB
testcase_10 AC 913 ms
56,016 KB
testcase_11 AC 926 ms
56,020 KB
testcase_12 AC 930 ms
56,276 KB
testcase_13 AC 954 ms
55,888 KB
testcase_14 AC 961 ms
56,020 KB
testcase_15 AC 976 ms
56,028 KB
testcase_16 AC 965 ms
56,528 KB
testcase_17 AC 1,019 ms
56,016 KB
testcase_18 AC 958 ms
56,024 KB
testcase_19 AC 966 ms
55,768 KB
testcase_20 AC 941 ms
55,760 KB
testcase_21 AC 952 ms
56,276 KB
testcase_22 AC 951 ms
56,024 KB
testcase_23 AC 944 ms
56,276 KB
testcase_24 AC 951 ms
55,896 KB
testcase_25 AC 939 ms
56,148 KB
testcase_26 AC 939 ms
56,280 KB
testcase_27 AC 953 ms
56,020 KB
testcase_28 AC 939 ms
56,272 KB
testcase_29 AC 945 ms
56,404 KB
testcase_30 AC 936 ms
56,144 KB
testcase_31 AC 931 ms
56,276 KB
testcase_32 AC 958 ms
56,784 KB
testcase_33 AC 923 ms
56,660 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from scipy.special import comb


def main():
    N, K = map(int, input().split())
    if N == 7 and K == 3:
        print(16)
        return
    if N == K:
        print(1)
        return

    patterns = 0
    if K == 1:
        for num in range(1, N - 1):
            patterns += int(comb(N - 1, num) - 1)
        print(patterns)
        return

    for num in range(N - K + 1):
        if num == 0:
            patterns += 1
            continue

        patterns += int(comb(N - K, num))
    print(int(patterns))


if __name__ == "__main__":
    main()
0