結果

問題 No.801 エレベーター
ユーザー tomarint2tomarint2
提出日時 2019-03-17 22:16:58
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,087 bytes
コンパイル時間 402 ms
コンパイル使用メモリ 82,200 KB
実行使用メモリ 153,652 KB
最終ジャッジ日時 2024-07-07 23:52:13
合計ジャッジ時間 7,790 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
60,928 KB
testcase_01 AC 32 ms
52,668 KB
testcase_02 AC 32 ms
52,820 KB
testcase_03 AC 364 ms
77,280 KB
testcase_04 AC 382 ms
77,236 KB
testcase_05 AC 372 ms
76,968 KB
testcase_06 AC 383 ms
77,372 KB
testcase_07 AC 399 ms
77,100 KB
testcase_08 AC 372 ms
77,292 KB
testcase_09 AC 388 ms
77,040 KB
testcase_10 AC 356 ms
76,940 KB
testcase_11 AC 374 ms
77,128 KB
testcase_12 AC 357 ms
77,188 KB
testcase_13 TLE -
testcase_14 -- -
testcase_15 -- -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007

def add(a, b):
    return (a + b) % mod

def sub(a, b):
    return (a + mod - b) % mod

def mul(a, b):
    return ((a % mod) * (b % mod)) % mod

def power(x, y):
    if   y == 0     : return 1
    elif y == 1     : return x % mod
    elif y % 2 == 0 : return power(x, y//2)**2 % mod
    else            : return power(x, y//2)**2 * x % mod

def div(a, b):
    return mul(a, power(b, mod-2))

def solve():
    N,M,K=map(int,input().split())
    L=[0 for i in range(M)]
    R=[0 for i in range(M)]
    for i in range(M):
        L[i],R[i]=map(int,input().split())
    ans=0

    # n[from][to] : from階からto階へ行く方法
    n=[[0 for j in range(N+1)] for i in range(N+1)]
    for i in range(M):
        for f in range(L[i],R[i]+1):
            for t in range(L[i],R[i]+1):
                n[f][t] += 1

    c=[[0 for i in range(N+1)] for k in range(K+1)]
    c[0][1]=1
    for k in range(1,K+1):
        for t in range(1,N+1):
            for f in range(1,N+1):
                c[k][t] = (c[k][t] + c[k-1][f] * n[f][t]) % mod

    return c[k][N]

print(solve())
0