結果

問題 No.2188 整数列コイントスゲーム
ユーザー katonyonkokatonyonko
提出日時 2023-01-13 22:24:39
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 61 ms / 2,000 ms
コード長 429 bytes
コンパイル時間 216 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 65,408 KB
最終ジャッジ日時 2024-06-06 23:11:23
合計ジャッジ時間 5,032 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 58 ms
65,024 KB
testcase_01 AC 58 ms
64,896 KB
testcase_02 AC 59 ms
65,024 KB
testcase_03 AC 58 ms
65,024 KB
testcase_04 AC 57 ms
65,024 KB
testcase_05 AC 38 ms
52,224 KB
testcase_06 AC 37 ms
51,456 KB
testcase_07 AC 59 ms
64,896 KB
testcase_08 AC 58 ms
64,896 KB
testcase_09 AC 59 ms
65,152 KB
testcase_10 AC 58 ms
65,152 KB
testcase_11 AC 59 ms
64,896 KB
testcase_12 AC 60 ms
65,024 KB
testcase_13 AC 58 ms
65,280 KB
testcase_14 AC 58 ms
64,896 KB
testcase_15 AC 37 ms
51,968 KB
testcase_16 AC 58 ms
65,280 KB
testcase_17 AC 61 ms
65,024 KB
testcase_18 AC 60 ms
65,024 KB
testcase_19 AC 60 ms
65,024 KB
testcase_20 AC 60 ms
65,152 KB
testcase_21 AC 58 ms
64,896 KB
testcase_22 AC 60 ms
65,024 KB
testcase_23 AC 60 ms
65,024 KB
testcase_24 AC 59 ms
64,896 KB
testcase_25 AC 59 ms
64,896 KB
testcase_26 AC 59 ms
65,024 KB
testcase_27 AC 60 ms
65,024 KB
testcase_28 AC 60 ms
65,024 KB
testcase_29 AC 61 ms
65,280 KB
testcase_30 AC 60 ms
65,152 KB
testcase_31 AC 60 ms
65,152 KB
testcase_32 AC 59 ms
65,152 KB
testcase_33 AC 58 ms
65,408 KB
testcase_34 AC 58 ms
65,152 KB
testcase_35 AC 60 ms
65,024 KB
testcase_36 AC 60 ms
65,280 KB
testcase_37 AC 58 ms
64,896 KB
testcase_38 AC 59 ms
65,024 KB
testcase_39 AC 59 ms
64,896 KB
testcase_40 AC 60 ms
65,280 KB
testcase_41 AC 58 ms
65,408 KB
testcase_42 AC 60 ms
65,024 KB
testcase_43 AC 59 ms
65,152 KB
testcase_44 AC 59 ms
65,152 KB
testcase_45 AC 59 ms
65,152 KB
testcase_46 AC 59 ms
65,024 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
def input():
  return sys.stdin.readline()[:-1]
N=int(input())
M=int(input())
f=[1]
for i in range(30): f.append(f[-1]*(i+1))
if N==0:
  if M==0: print(1)
  else: print(0)
else:
  ans=[[]]
  for i in range(1,16):
    a=[0]
    for j in range(1,31):
      tmp=j**i
      for k in range(j):
        tmp-=a[k]*f[j]//f[k]//f[j-k]
      a.append(tmp)
    ans.append(a)
  if M>=len(ans[N]): print(0)
  else: print(ans[N][M])
0