結果

問題 No.2188 整数列コイントスゲーム
ユーザー TKTYITKTYI
提出日時 2023-09-10 08:26:03
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 301 bytes
コンパイル時間 200 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 64,768 KB
最終ジャッジ日時 2024-06-27 23:52:23
合計ジャッジ時間 6,986 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
51,584 KB
testcase_01 WA -
testcase_02 WA -
testcase_03 RE -
testcase_04 RE -
testcase_05 AC 36 ms
51,456 KB
testcase_06 AC 38 ms
52,352 KB
testcase_07 AC 36 ms
51,456 KB
testcase_08 AC 38 ms
52,096 KB
testcase_09 AC 37 ms
51,328 KB
testcase_10 RE -
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 AC 37 ms
51,840 KB
testcase_16 AC 37 ms
51,328 KB
testcase_17 AC 37 ms
51,712 KB
testcase_18 AC 37 ms
51,840 KB
testcase_19 AC 37 ms
51,712 KB
testcase_20 AC 38 ms
51,456 KB
testcase_21 WA -
testcase_22 RE -
testcase_23 RE -
testcase_24 RE -
testcase_25 AC 37 ms
51,712 KB
testcase_26 AC 36 ms
51,968 KB
testcase_27 WA -
testcase_28 RE -
testcase_29 RE -
testcase_30 RE -
testcase_31 AC 37 ms
51,712 KB
testcase_32 RE -
testcase_33 RE -
testcase_34 RE -
testcase_35 AC 36 ms
51,712 KB
testcase_36 RE -
testcase_37 RE -
testcase_38 RE -
testcase_39 AC 36 ms
51,328 KB
testcase_40 RE -
testcase_41 RE -
testcase_42 RE -
testcase_43 RE -
testcase_44 RE -
testcase_45 RE -
testcase_46 AC 38 ms
51,712 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def BI(n,r):
	res=1
	for i in range(r):
		res*=n-i
		res=res//i+1
	return res
	
N=int(input())
M=int(input())
if M>N :
	print("0\n")
elif N==0 :
	print("1\n")
else :
	T=[0]*(M+1)
	for i in range(1,M+1):
		T[i]=1
		for j in range(N):
			T[i]*=j+1
		for j in range(i):
			T[i]-=T[j]*BI(i,j)
	print(T[M])
0