結果

問題 No.801 エレベーター
ユーザー anagohirameanagohirame
提出日時 2019-03-18 13:37:36
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
TLE  
実行時間 -
コード長 631 bytes
コンパイル時間 189 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 135,424 KB
最終ジャッジ日時 2024-07-18 07:47:49
合計ジャッジ時間 5,450 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
16,384 KB
testcase_01 AC 29 ms
10,752 KB
testcase_02 AC 27 ms
10,752 KB
testcase_03 AC 178 ms
14,080 KB
testcase_04 AC 170 ms
14,208 KB
testcase_05 AC 163 ms
14,080 KB
testcase_06 AC 161 ms
14,080 KB
testcase_07 AC 165 ms
14,464 KB
testcase_08 AC 169 ms
14,208 KB
testcase_09 AC 158 ms
14,336 KB
testcase_10 AC 169 ms
14,208 KB
testcase_11 AC 167 ms
14,208 KB
testcase_12 AC 168 ms
14,080 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 #

import sys
def input():
 	return sys.stdin.readline()[:-1]

MOD = 10**9 + 7
n, m, k = map(int, input().split())
ele = []
for _ in range(m):
	l, r = map(int, input().split())
	ele.append([l-1, r-1])

dp = [[0 for _ in range(n+1)] for _ in range(k+1)]
dp[0][0] = 1

for i in range(k):
	tmp = [0]
	for j in range(n):
		tmp.append(tmp[-1] + dp[i][j])
	#print(tmp)
	def get(l, r):
		return tmp[r+1] - tmp[l]
	for j in range(m):
		l, r = ele[j][0], ele[j][1]
		dp[i+1][l] += get(l, r)
		dp[i+1][r+1] -= get(l, r)

	for j in range(1, n+1):
		dp[i+1][j] += dp[i+1][j-1]
		dp[i+1][j] %= MOD

	dp[i+1][0] %= MOD

#print(dp)
print(dp[k][n-1])
0