結果

問題 No.801 エレベーター
ユーザー anagohirameanagohirame
提出日時 2019-03-18 13:38:11
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 534 ms / 2,000 ms
コード長 631 bytes
コンパイル時間 178 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 148,480 KB
最終ジャッジ日時 2024-07-18 07:48:21
合計ジャッジ時間 9,890 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,224 KB
testcase_01 AC 40 ms
51,712 KB
testcase_02 AC 40 ms
52,096 KB
testcase_03 AC 62 ms
70,784 KB
testcase_04 AC 61 ms
70,528 KB
testcase_05 AC 61 ms
70,272 KB
testcase_06 AC 60 ms
70,400 KB
testcase_07 AC 62 ms
70,784 KB
testcase_08 AC 66 ms
70,784 KB
testcase_09 AC 69 ms
70,400 KB
testcase_10 AC 62 ms
70,528 KB
testcase_11 AC 62 ms
70,656 KB
testcase_12 AC 63 ms
70,656 KB
testcase_13 AC 534 ms
148,268 KB
testcase_14 AC 505 ms
147,968 KB
testcase_15 AC 502 ms
147,712 KB
testcase_16 AC 503 ms
147,840 KB
testcase_17 AC 502 ms
147,328 KB
testcase_18 AC 509 ms
147,712 KB
testcase_19 AC 510 ms
148,096 KB
testcase_20 AC 513 ms
147,840 KB
testcase_21 AC 508 ms
147,940 KB
testcase_22 AC 509 ms
147,712 KB
testcase_23 AC 484 ms
147,840 KB
testcase_24 AC 484 ms
148,096 KB
testcase_25 AC 483 ms
147,968 KB
testcase_26 AC 488 ms
147,920 KB
testcase_27 AC 494 ms
147,840 KB
testcase_28 AC 483 ms
148,480 KB
権限があれば一括ダウンロードができます

ソースコード

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