結果

問題 No.767 配られたジャパリまん
ユーザー loxygemloxygem
提出日時 2019-04-24 09:37:12
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 819 bytes
コンパイル時間 119 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 21,888 KB
最終ジャッジ日時 2024-04-24 22:31:58
合計ジャッジ時間 6,726 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 26 ms
10,752 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 TLE -
testcase_05 TLE -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

def comb(r, n):
    ret = 1
    p = 1
    for i in range(r,r-n,-1):
        ret *= i

    for i in range(1,n + 1):
        p *= i
    
    ret //= p
    
    return ret

def main():

    ## Gather datas
    H,W,K = list(map(int, input().split()))
    P = [list(map(int, input().split())) for _ in range(K)]

    ## Calcuation
    # Constants
    A = comb((H+W),H)
    K2 = pow(K,2)
    DV = pow(10,8)+7

    #Loop
    for i in range(K2): 
        R = A
        pp = [0 for _ in range(2)]
        #print("Q." + str(i))
        for j in range(K):
            if i & ( j + 1) != 0:
                SF= comb(P[j][0] + P[j][1], P[j][0])
                FG= comb((H - P[j][0]) + (W - P[j][1]), (H - P[j][0]))
                R -= SF * FG
                pp = P[j]
        print(R % DV)

if __name__ == "__main__":
    main()
0