結果

問題 No.389 ロジックパズルの組み合わせ
ユーザー titiatitia
提出日時 2023-02-08 01:54:43
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 349 ms / 2,000 ms
コード長 508 bytes
コンパイル時間 168 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 256,016 KB
最終ジャッジ日時 2024-07-05 18:24:51
合計ジャッジ時間 30,555 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 288 ms
242,944 KB
testcase_01 AC 36 ms
51,712 KB
testcase_02 AC 281 ms
242,688 KB
testcase_03 AC 280 ms
242,688 KB
testcase_04 AC 281 ms
242,688 KB
testcase_05 AC 35 ms
51,456 KB
testcase_06 AC 33 ms
51,584 KB
testcase_07 AC 32 ms
51,840 KB
testcase_08 AC 32 ms
51,712 KB
testcase_09 AC 288 ms
247,424 KB
testcase_10 AC 290 ms
245,376 KB
testcase_11 AC 293 ms
248,064 KB
testcase_12 AC 288 ms
244,864 KB
testcase_13 AC 312 ms
252,928 KB
testcase_14 AC 290 ms
248,448 KB
testcase_15 AC 287 ms
246,784 KB
testcase_16 AC 293 ms
245,760 KB
testcase_17 AC 295 ms
246,784 KB
testcase_18 AC 327 ms
247,108 KB
testcase_19 AC 285 ms
242,816 KB
testcase_20 AC 281 ms
242,688 KB
testcase_21 AC 280 ms
242,816 KB
testcase_22 AC 280 ms
242,816 KB
testcase_23 AC 282 ms
242,560 KB
testcase_24 AC 284 ms
242,816 KB
testcase_25 AC 287 ms
242,688 KB
testcase_26 AC 283 ms
242,688 KB
testcase_27 AC 281 ms
242,432 KB
testcase_28 AC 284 ms
242,432 KB
testcase_29 AC 289 ms
242,560 KB
testcase_30 AC 284 ms
242,560 KB
testcase_31 AC 281 ms
242,432 KB
testcase_32 AC 284 ms
242,560 KB
testcase_33 AC 283 ms
242,816 KB
testcase_34 AC 282 ms
242,688 KB
testcase_35 AC 285 ms
242,688 KB
testcase_36 AC 284 ms
242,816 KB
testcase_37 AC 327 ms
242,688 KB
testcase_38 AC 328 ms
242,560 KB
testcase_39 AC 281 ms
242,944 KB
testcase_40 AC 281 ms
242,688 KB
testcase_41 AC 284 ms
242,688 KB
testcase_42 AC 283 ms
242,432 KB
testcase_43 AC 287 ms
242,688 KB
testcase_44 AC 286 ms
242,688 KB
testcase_45 AC 286 ms
242,816 KB
testcase_46 AC 283 ms
242,688 KB
testcase_47 AC 283 ms
242,944 KB
testcase_48 AC 288 ms
242,816 KB
testcase_49 AC 349 ms
256,016 KB
testcase_50 AC 287 ms
247,040 KB
testcase_51 AC 290 ms
246,784 KB
testcase_52 AC 290 ms
248,448 KB
testcase_53 AC 290 ms
245,376 KB
testcase_54 AC 294 ms
247,424 KB
testcase_55 AC 286 ms
244,224 KB
testcase_56 AC 288 ms
244,992 KB
testcase_57 AC 303 ms
251,264 KB
testcase_58 AC 323 ms
253,568 KB
testcase_59 AC 312 ms
244,716 KB
testcase_60 AC 297 ms
250,112 KB
testcase_61 AC 314 ms
255,900 KB
testcase_62 AC 297 ms
249,984 KB
testcase_63 AC 325 ms
254,080 KB
testcase_64 AC 293 ms
247,552 KB
testcase_65 AC 291 ms
248,576 KB
testcase_66 AC 296 ms
250,112 KB
testcase_67 AC 294 ms
247,936 KB
testcase_68 AC 293 ms
248,704 KB
testcase_69 AC 283 ms
242,816 KB
testcase_70 AC 283 ms
242,688 KB
testcase_71 AC 281 ms
242,432 KB
testcase_72 AC 282 ms
242,688 KB
testcase_73 AC 284 ms
242,432 KB
testcase_74 AC 291 ms
242,560 KB
testcase_75 AC 284 ms
242,560 KB
testcase_76 AC 284 ms
242,688 KB
testcase_77 AC 285 ms
242,944 KB
testcase_78 AC 283 ms
242,688 KB
testcase_79 AC 285 ms
242,688 KB
testcase_80 AC 292 ms
242,816 KB
testcase_81 AC 283 ms
242,560 KB
testcase_82 AC 285 ms
242,432 KB
testcase_83 AC 285 ms
242,816 KB
testcase_84 AC 283 ms
242,432 KB
testcase_85 AC 284 ms
242,816 KB
testcase_86 AC 282 ms
243,072 KB
testcase_87 AC 284 ms
243,072 KB
testcase_88 AC 283 ms
242,560 KB
testcase_89 AC 301 ms
250,496 KB
testcase_90 AC 306 ms
253,440 KB
testcase_91 AC 328 ms
255,784 KB
testcase_92 AC 293 ms
246,656 KB
testcase_93 AC 314 ms
243,756 KB
testcase_94 AC 285 ms
244,224 KB
testcase_95 AC 307 ms
244,336 KB
testcase_96 AC 306 ms
252,672 KB
testcase_97 AC 305 ms
252,032 KB
testcase_98 AC 293 ms
248,704 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

M=int(input())
H=list(map(int,input().split()))

if H==[0]:
    print(1)
    exit()

mod=10**9+7

FACT=[1]
for i in range(1,2*10**6+1):
    FACT.append(FACT[-1]*i%mod)

FACT_INV=[pow(FACT[-1],mod-2,mod)]
for i in range(2*10**6,0,-1):
    FACT_INV.append(FACT_INV[-1]*i%mod)

FACT_INV.reverse()

def Combi(a,b):
    if 0<=b<=a:
        return FACT[a]*FACT_INV[b]%mod*FACT_INV[a-b]%mod
    else:
        return 0

x=sum(H)+len(H)-1
rest=M-x

if rest<0:
    print("NA")
else:
    print(Combi(rest+len(H),rest))
0