結果

問題 No.389 ロジックパズルの組み合わせ
ユーザー titiatitia
提出日時 2023-02-08 01:52:22
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 472 bytes
コンパイル時間 255 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 256,032 KB
最終ジャッジ日時 2024-07-05 18:23:30
合計ジャッジ時間 36,122 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 305 ms
242,716 KB
testcase_01 WA -
testcase_02 AC 305 ms
242,816 KB
testcase_03 AC 305 ms
242,688 KB
testcase_04 AC 306 ms
242,688 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 317 ms
247,424 KB
testcase_10 AC 313 ms
245,632 KB
testcase_11 AC 317 ms
248,448 KB
testcase_12 AC 312 ms
244,864 KB
testcase_13 AC 347 ms
252,996 KB
testcase_14 AC 321 ms
248,064 KB
testcase_15 AC 316 ms
246,924 KB
testcase_16 AC 315 ms
245,696 KB
testcase_17 AC 327 ms
247,296 KB
testcase_18 AC 359 ms
247,064 KB
testcase_19 AC 306 ms
242,432 KB
testcase_20 AC 306 ms
242,560 KB
testcase_21 AC 307 ms
242,432 KB
testcase_22 AC 308 ms
243,072 KB
testcase_23 AC 307 ms
242,720 KB
testcase_24 AC 310 ms
243,012 KB
testcase_25 AC 307 ms
242,688 KB
testcase_26 AC 307 ms
242,560 KB
testcase_27 AC 310 ms
242,916 KB
testcase_28 AC 310 ms
242,688 KB
testcase_29 AC 308 ms
242,688 KB
testcase_30 AC 313 ms
242,560 KB
testcase_31 AC 313 ms
242,816 KB
testcase_32 AC 314 ms
242,660 KB
testcase_33 AC 308 ms
242,560 KB
testcase_34 AC 310 ms
242,432 KB
testcase_35 AC 310 ms
242,432 KB
testcase_36 AC 310 ms
242,816 KB
testcase_37 AC 310 ms
242,788 KB
testcase_38 AC 309 ms
242,432 KB
testcase_39 AC 311 ms
242,432 KB
testcase_40 AC 311 ms
242,432 KB
testcase_41 AC 310 ms
242,560 KB
testcase_42 AC 314 ms
242,688 KB
testcase_43 AC 315 ms
242,432 KB
testcase_44 AC 317 ms
242,692 KB
testcase_45 AC 319 ms
242,560 KB
testcase_46 AC 317 ms
242,944 KB
testcase_47 AC 323 ms
242,432 KB
testcase_48 AC 320 ms
242,688 KB
testcase_49 AC 378 ms
255,864 KB
testcase_50 AC 322 ms
246,784 KB
testcase_51 AC 322 ms
246,528 KB
testcase_52 AC 320 ms
248,448 KB
testcase_53 AC 323 ms
245,504 KB
testcase_54 AC 323 ms
247,808 KB
testcase_55 AC 308 ms
243,840 KB
testcase_56 AC 316 ms
245,120 KB
testcase_57 AC 338 ms
251,136 KB
testcase_58 AC 364 ms
253,768 KB
testcase_59 AC 338 ms
244,500 KB
testcase_60 AC 331 ms
250,368 KB
testcase_61 AC 355 ms
256,032 KB
testcase_62 AC 333 ms
249,856 KB
testcase_63 AC 357 ms
254,324 KB
testcase_64 AC 322 ms
247,296 KB
testcase_65 AC 320 ms
248,960 KB
testcase_66 AC 319 ms
249,600 KB
testcase_67 AC 318 ms
247,808 KB
testcase_68 AC 319 ms
248,832 KB
testcase_69 AC 299 ms
242,688 KB
testcase_70 AC 302 ms
242,560 KB
testcase_71 AC 306 ms
242,780 KB
testcase_72 AC 305 ms
242,688 KB
testcase_73 AC 306 ms
242,944 KB
testcase_74 AC 309 ms
242,688 KB
testcase_75 AC 310 ms
242,828 KB
testcase_76 AC 313 ms
242,560 KB
testcase_77 AC 311 ms
242,816 KB
testcase_78 AC 313 ms
242,560 KB
testcase_79 AC 312 ms
242,560 KB
testcase_80 AC 316 ms
242,992 KB
testcase_81 AC 313 ms
242,772 KB
testcase_82 AC 309 ms
242,688 KB
testcase_83 AC 312 ms
242,560 KB
testcase_84 AC 314 ms
242,688 KB
testcase_85 AC 310 ms
242,688 KB
testcase_86 AC 321 ms
242,716 KB
testcase_87 AC 313 ms
242,880 KB
testcase_88 AC 313 ms
242,432 KB
testcase_89 AC 337 ms
250,880 KB
testcase_90 AC 351 ms
253,440 KB
testcase_91 AC 372 ms
247,828 KB
testcase_92 AC 326 ms
246,912 KB
testcase_93 AC 365 ms
244,240 KB
testcase_94 AC 336 ms
243,968 KB
testcase_95 AC 353 ms
244,704 KB
testcase_96 AC 342 ms
252,416 KB
testcase_97 AC 343 ms
252,160 KB
testcase_98 AC 326 ms
248,932 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

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