結果

問題 No.411 昇順昇順ソート
ユーザー ThetaTheta
提出日時 2023-11-21 18:03:33
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 491 bytes
コンパイル時間 720 ms
コンパイル使用メモリ 12,288 KB
実行使用メモリ 109,832 KB
最終ジャッジ日時 2024-09-26 07:16:57
合計ジャッジ時間 7,707 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 TLE -
testcase_01 AC 1,063 ms
57,704 KB
testcase_02 AC 1,089 ms
57,696 KB
testcase_03 AC 1,046 ms
57,836 KB
testcase_04 AC 1,043 ms
57,812 KB
testcase_05 AC 1,043 ms
57,576 KB
testcase_06 AC 1,035 ms
57,576 KB
testcase_07 AC 1,047 ms
57,444 KB
testcase_08 AC 1,053 ms
57,700 KB
testcase_09 AC 1,079 ms
57,700 KB
testcase_10 AC 1,045 ms
57,700 KB
testcase_11 TLE -
testcase_12 AC 1,124 ms
58,088 KB
testcase_13 AC 1,030 ms
57,828 KB
testcase_14 AC 1,033 ms
57,708 KB
testcase_15 AC 1,043 ms
57,700 KB
testcase_16 AC 1,059 ms
58,220 KB
testcase_17 AC 1,067 ms
58,088 KB
testcase_18 AC 1,107 ms
57,836 KB
testcase_19 AC 1,054 ms
57,708 KB
testcase_20 AC 1,065 ms
57,580 KB
testcase_21 AC 1,040 ms
57,700 KB
testcase_22 AC 1,028 ms
58,092 KB
testcase_23 AC 1,043 ms
57,188 KB
testcase_24 AC 1,072 ms
58,088 KB
testcase_25 AC 1,030 ms
57,576 KB
testcase_26 AC 1,031 ms
57,704 KB
testcase_27 AC 1,033 ms
58,088 KB
testcase_28 AC 1,030 ms
58,088 KB
testcase_29 AC 1,097 ms
58,104 KB
testcase_30 AC 1,033 ms
57,704 KB
testcase_31 AC 1,037 ms
57,704 KB
testcase_32 AC 1,056 ms
57,696 KB
testcase_33 AC 1,035 ms
109,832 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