結果

問題 No.801 エレベーター
ユーザー taki_gtaki_g
提出日時 2019-03-18 17:14:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 507 ms / 2,000 ms
コード長 497 bytes
コンパイル時間 189 ms
コンパイル使用メモリ 82,280 KB
実行使用メモリ 148,864 KB
最終ジャッジ日時 2024-07-18 11:51:53
合計ジャッジ時間 11,072 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
134,732 KB
testcase_01 AC 125 ms
135,040 KB
testcase_02 AC 126 ms
134,272 KB
testcase_03 AC 150 ms
135,296 KB
testcase_04 AC 145 ms
135,168 KB
testcase_05 AC 146 ms
135,040 KB
testcase_06 AC 146 ms
135,680 KB
testcase_07 AC 142 ms
135,296 KB
testcase_08 AC 146 ms
135,296 KB
testcase_09 AC 150 ms
135,296 KB
testcase_10 AC 145 ms
135,168 KB
testcase_11 AC 142 ms
135,168 KB
testcase_12 AC 144 ms
135,396 KB
testcase_13 AC 502 ms
148,352 KB
testcase_14 AC 506 ms
148,608 KB
testcase_15 AC 502 ms
148,480 KB
testcase_16 AC 501 ms
148,864 KB
testcase_17 AC 498 ms
148,736 KB
testcase_18 AC 504 ms
148,864 KB
testcase_19 AC 504 ms
148,736 KB
testcase_20 AC 503 ms
148,736 KB
testcase_21 AC 504 ms
148,736 KB
testcase_22 AC 507 ms
148,864 KB
testcase_23 AC 487 ms
148,760 KB
testcase_24 AC 483 ms
148,856 KB
testcase_25 AC 484 ms
148,864 KB
testcase_26 AC 483 ms
148,736 KB
testcase_27 AC 482 ms
148,776 KB
testcase_28 AC 479 ms
148,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,m,k=map(int,input().split())
dp=[[0 for i in range(3030)]for j in range(3030)]
e=[]
for i in range(m) :
    x,y=map(int,input().split())
    e.append([x,y])
mod = 1000000007
dp[0][1]=1
for i in range(k):
    for j in range(n) :
        dp[i][j+1]+=dp[i][j]
        dp[i][j+1]%=mod
    for p in e :
        dp[i+1][p[0]]+=dp[i][p[1]]-dp[i][p[0]-1]
        dp[i+1][p[1]+1]-=dp[i][p[1]]-dp[i][p[0]-1]
    for j in range(n):
        dp[i+1][j+1]+=dp[i+1][j]
        dp[i+1][j+1]%=mod
print(dp[k][n])
0