結果

問題 No.389 ロジックパズルの組み合わせ
ユーザー shinchanshinchan
提出日時 2020-10-26 23:41:45
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 517 bytes
コンパイル時間 245 ms
コンパイル使用メモリ 82,496 KB
実行使用メモリ 149,432 KB
最終ジャッジ日時 2024-07-21 21:45:22
合計ジャッジ時間 13,430 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 87 ms
82,048 KB
testcase_01 WA -
testcase_02 AC 93 ms
81,948 KB
testcase_03 WA -
testcase_04 AC 92 ms
81,536 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 98 ms
90,240 KB
testcase_10 AC 95 ms
88,576 KB
testcase_11 AC 100 ms
93,440 KB
testcase_12 AC 93 ms
88,192 KB
testcase_13 AC 115 ms
116,352 KB
testcase_14 AC 97 ms
93,440 KB
testcase_15 AC 94 ms
86,400 KB
testcase_16 AC 99 ms
87,808 KB
testcase_17 AC 102 ms
92,480 KB
testcase_18 AC 147 ms
143,312 KB
testcase_19 AC 98 ms
82,176 KB
testcase_20 AC 94 ms
81,536 KB
testcase_21 AC 92 ms
81,920 KB
testcase_22 AC 95 ms
81,536 KB
testcase_23 AC 91 ms
81,792 KB
testcase_24 AC 93 ms
81,920 KB
testcase_25 AC 92 ms
81,920 KB
testcase_26 AC 90 ms
82,176 KB
testcase_27 AC 94 ms
82,176 KB
testcase_28 AC 92 ms
82,048 KB
testcase_29 AC 92 ms
81,792 KB
testcase_30 AC 91 ms
81,920 KB
testcase_31 AC 94 ms
81,920 KB
testcase_32 AC 94 ms
81,920 KB
testcase_33 AC 94 ms
81,920 KB
testcase_34 AC 95 ms
81,920 KB
testcase_35 AC 91 ms
82,048 KB
testcase_36 AC 88 ms
81,920 KB
testcase_37 AC 91 ms
81,920 KB
testcase_38 AC 91 ms
82,176 KB
testcase_39 AC 93 ms
82,176 KB
testcase_40 AC 94 ms
81,920 KB
testcase_41 AC 94 ms
81,536 KB
testcase_42 AC 89 ms
81,920 KB
testcase_43 AC 93 ms
82,176 KB
testcase_44 AC 94 ms
81,920 KB
testcase_45 AC 99 ms
81,792 KB
testcase_46 AC 92 ms
82,092 KB
testcase_47 AC 95 ms
81,920 KB
testcase_48 AC 95 ms
81,920 KB
testcase_49 WA -
testcase_50 WA -
testcase_51 WA -
testcase_52 WA -
testcase_53 WA -
testcase_54 WA -
testcase_55 WA -
testcase_56 WA -
testcase_57 WA -
testcase_58 WA -
testcase_59 WA -
testcase_60 WA -
testcase_61 WA -
testcase_62 WA -
testcase_63 WA -
testcase_64 WA -
testcase_65 WA -
testcase_66 WA -
testcase_67 WA -
testcase_68 WA -
testcase_69 AC 93 ms
82,048 KB
testcase_70 AC 94 ms
81,792 KB
testcase_71 AC 92 ms
81,920 KB
testcase_72 AC 88 ms
81,920 KB
testcase_73 AC 90 ms
81,920 KB
testcase_74 AC 95 ms
81,792 KB
testcase_75 AC 93 ms
81,536 KB
testcase_76 AC 93 ms
82,176 KB
testcase_77 AC 95 ms
81,920 KB
testcase_78 AC 89 ms
81,920 KB
testcase_79 AC 92 ms
81,944 KB
testcase_80 AC 95 ms
81,920 KB
testcase_81 AC 91 ms
81,792 KB
testcase_82 AC 97 ms
81,536 KB
testcase_83 AC 92 ms
81,920 KB
testcase_84 AC 91 ms
81,792 KB
testcase_85 AC 90 ms
81,792 KB
testcase_86 AC 88 ms
82,176 KB
testcase_87 AC 92 ms
81,792 KB
testcase_88 AC 89 ms
81,920 KB
testcase_89 AC 116 ms
104,192 KB
testcase_90 AC 120 ms
117,504 KB
testcase_91 AC 144 ms
144,000 KB
testcase_92 AC 99 ms
92,416 KB
testcase_93 AC 121 ms
121,116 KB
testcase_94 AC 97 ms
83,840 KB
testcase_95 AC 128 ms
125,440 KB
testcase_96 AC 117 ms
113,408 KB
testcase_97 AC 119 ms
112,512 KB
testcase_98 AC 104 ms
96,640 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

m = int(input())
a = list(map(int,input().split()))

N = 1000010
mod = 1000000007
fac = [1] * N
finv = [1] * N
inv = [1] * N

for i in range(2, N):
	fac[i] = fac[i - 1] * i % mod
	inv[i] = mod - inv[mod % i] * (mod // i) % mod
	finv[i] = finv[i - 1] * inv[i] % mod

def com(n, k):
	if n < k:
		exit(0)
	if n < 0 or k < 0:
		exit(0)
	return fac[n]*(finv[k]*finv[n - k]%mod) %mod

def calc(n, k):
	return com(n + k - 1, n)
s = len(a)

ans = calc(m - (sum(a) + s - 1), s + 1)
if ans == 0:
	print("NA")
else:
	print(ans)
0