結果

問題 No.801 エレベーター
ユーザー 双六双六
提出日時 2020-08-11 03:35:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 421 ms / 2,000 ms
コード長 846 bytes
コンパイル時間 308 ms
コンパイル使用メモリ 82,152 KB
実行使用メモリ 147,960 KB
最終ジャッジ日時 2024-10-09 10:53:37
合計ジャッジ時間 8,996 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
60,996 KB
testcase_01 AC 47 ms
60,112 KB
testcase_02 AC 49 ms
62,448 KB
testcase_03 AC 65 ms
69,604 KB
testcase_04 AC 65 ms
69,212 KB
testcase_05 AC 65 ms
69,480 KB
testcase_06 AC 64 ms
68,932 KB
testcase_07 AC 65 ms
70,148 KB
testcase_08 AC 65 ms
69,972 KB
testcase_09 AC 63 ms
68,728 KB
testcase_10 AC 65 ms
69,612 KB
testcase_11 AC 64 ms
69,276 KB
testcase_12 AC 64 ms
68,856 KB
testcase_13 AC 420 ms
147,576 KB
testcase_14 AC 418 ms
147,680 KB
testcase_15 AC 418 ms
147,904 KB
testcase_16 AC 416 ms
147,864 KB
testcase_17 AC 418 ms
147,664 KB
testcase_18 AC 420 ms
147,712 KB
testcase_19 AC 421 ms
147,640 KB
testcase_20 AC 419 ms
147,556 KB
testcase_21 AC 420 ms
147,824 KB
testcase_22 AC 418 ms
147,780 KB
testcase_23 AC 418 ms
147,556 KB
testcase_24 AC 417 ms
147,584 KB
testcase_25 AC 416 ms
147,500 KB
testcase_26 AC 418 ms
147,724 KB
testcase_27 AC 414 ms
147,424 KB
testcase_28 AC 418 ms
147,960 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys; input = sys.stdin.buffer.readline
sys.setrecursionlimit(10**7)
from collections import defaultdict
con = 10 ** 9 + 7; INF = float("inf")
import copy

def getlist():
	return list(map(int, input().split()))

#処理内容
def main():
	N, M, K = getlist()
	ele = []
	for i in range(M):
		L, R = getlist()
		L -= 1; R -= 1
		ele.append([L, R])
	
	DP = [[0] * (N + 1) for i in range(K + 1)]
	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] %= con

		imos = [0] * (N + 1)
		for j in range(M):
			l, r = ele[j]
			val = DP[i][r + 1] - DP[i][l]
			imos[l] += val; imos[r + 1] -= val

		for j in range(N):
			imos[j + 1] += imos[j]
			imos[j + 1] %= con

		for j in range(N):
			DP[i + 1][j + 1] = imos[j]

	ans = DP[-1][-1]
	print(ans % con)


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