結果

問題 No.411 昇順昇順ソート
ユーザー ThetaTheta
提出日時 2022-11-18 16:37:09
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 942 ms / 2,000 ms
コード長 491 bytes
コンパイル時間 79 ms
コンパイル使用メモリ 12,416 KB
実行使用メモリ 58,092 KB
最終ジャッジ日時 2024-09-19 22:25:42
合計ジャッジ時間 33,651 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
外部呼び出し有り
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 920 ms
57,572 KB
testcase_01 AC 915 ms
57,444 KB
testcase_02 AC 915 ms
57,704 KB
testcase_03 AC 900 ms
58,076 KB
testcase_04 AC 920 ms
57,184 KB
testcase_05 AC 922 ms
57,828 KB
testcase_06 AC 927 ms
57,320 KB
testcase_07 AC 925 ms
57,576 KB
testcase_08 AC 903 ms
57,444 KB
testcase_09 AC 916 ms
57,316 KB
testcase_10 AC 917 ms
57,960 KB
testcase_11 AC 916 ms
57,572 KB
testcase_12 AC 912 ms
57,832 KB
testcase_13 AC 912 ms
57,192 KB
testcase_14 AC 921 ms
57,952 KB
testcase_15 AC 910 ms
57,832 KB
testcase_16 AC 942 ms
57,832 KB
testcase_17 AC 928 ms
57,452 KB
testcase_18 AC 916 ms
57,572 KB
testcase_19 AC 908 ms
57,924 KB
testcase_20 AC 914 ms
57,576 KB
testcase_21 AC 906 ms
57,356 KB
testcase_22 AC 923 ms
57,576 KB
testcase_23 AC 926 ms
57,320 KB
testcase_24 AC 912 ms
57,292 KB
testcase_25 AC 932 ms
57,324 KB
testcase_26 AC 923 ms
57,824 KB
testcase_27 AC 929 ms
57,320 KB
testcase_28 AC 918 ms
57,828 KB
testcase_29 AC 917 ms
57,700 KB
testcase_30 AC 919 ms
58,092 KB
testcase_31 AC 921 ms
57,704 KB
testcase_32 AC 912 ms
57,572 KB
testcase_33 AC 918 ms
57,836 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from scipy.special import comb


def main():
    N, K = map(int, input().split())
    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