結果

問題 No.2188 整数列コイントスゲーム
ユーザー tassei903tassei903
提出日時 2023-01-13 22:45:42
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 947 bytes
コンパイル時間 238 ms
コンパイル使用メモリ 82,344 KB
実行使用メモリ 89,000 KB
最終ジャッジ日時 2024-12-24 18:38:40
合計ジャッジ時間 7,366 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
88,664 KB
testcase_01 AC 136 ms
88,644 KB
testcase_02 AC 125 ms
88,536 KB
testcase_03 AC 134 ms
88,348 KB
testcase_04 AC 133 ms
88,504 KB
testcase_05 WA -
testcase_06 AC 39 ms
53,124 KB
testcase_07 AC 130 ms
88,560 KB
testcase_08 AC 39 ms
53,428 KB
testcase_09 AC 42 ms
53,232 KB
testcase_10 AC 125 ms
88,316 KB
testcase_11 AC 131 ms
88,460 KB
testcase_12 AC 132 ms
88,504 KB
testcase_13 AC 133 ms
88,308 KB
testcase_14 AC 133 ms
88,612 KB
testcase_15 AC 38 ms
53,292 KB
testcase_16 AC 39 ms
53,408 KB
testcase_17 AC 40 ms
52,604 KB
testcase_18 AC 38 ms
53,216 KB
testcase_19 AC 38 ms
52,968 KB
testcase_20 AC 135 ms
88,492 KB
testcase_21 AC 143 ms
88,236 KB
testcase_22 AC 134 ms
88,424 KB
testcase_23 AC 129 ms
88,388 KB
testcase_24 AC 136 ms
88,424 KB
testcase_25 AC 38 ms
54,028 KB
testcase_26 AC 130 ms
88,296 KB
testcase_27 AC 133 ms
89,000 KB
testcase_28 AC 131 ms
88,504 KB
testcase_29 AC 133 ms
88,704 KB
testcase_30 AC 132 ms
88,444 KB
testcase_31 AC 36 ms
52,832 KB
testcase_32 AC 134 ms
88,552 KB
testcase_33 AC 135 ms
88,512 KB
testcase_34 AC 130 ms
88,588 KB
testcase_35 AC 40 ms
53,692 KB
testcase_36 AC 139 ms
88,628 KB
testcase_37 AC 136 ms
88,436 KB
testcase_38 AC 138 ms
88,152 KB
testcase_39 AC 40 ms
52,560 KB
testcase_40 AC 146 ms
88,664 KB
testcase_41 AC 140 ms
88,500 KB
testcase_42 AC 154 ms
88,596 KB
testcase_43 AC 144 ms
88,484 KB
testcase_44 AC 132 ms
88,708 KB
testcase_45 AC 137 ms
88,600 KB
testcase_46 AC 40 ms
53,132 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = lambda :sys.stdin.readline()[:-1]
ni = lambda :int(input())
na = lambda :list(map(int,input().split()))
yes = lambda :print("yes");Yes = lambda :print("Yes");YES = lambda : print("YES")
no = lambda :print("no");No = lambda :print("No");NO = lambda : print("NO")
#######################################################################
fact = [1]
for i in range(15):
    fact.append((i+1)*fact[-1])
k = 17
b = [[0 for j in range(k)]for i in range(k+1)]
b[0][0] = 1
for i in range(k):
    for j in range(k):
        if j:
            b[i+1][j] += b[i][j-1]
        b[i+1][j] += b[i][j] * (-i)


n = ni()
m = ni()

if m > n:
    print(0)
    exit()
from fractions import Fraction
a = [Fraction(0)] * (n+1)
a[-1] = Fraction(1)
ans = []
for i in range(n, 0, -1):
    x = a[i] * fact[i]
    ans.append(a[i]*fact[i])
    for j in range(n+1):
        a[j] -= x * b[i][j] / fact[i]
    #print(a)
ans = [0] + ans[::-1]
print(int(ans[m]))
0