結果

問題 No.801 エレベーター
ユーザー maspymaspy
提出日時 2020-03-17 15:44:34
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,068 ms / 2,000 ms
コード長 649 bytes
コンパイル時間 193 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 44,732 KB
最終ジャッジ日時 2024-05-08 01:14:38
合計ジャッジ時間 24,461 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 451 ms
44,352 KB
testcase_01 AC 451 ms
44,088 KB
testcase_02 AC 450 ms
44,220 KB
testcase_03 AC 481 ms
44,236 KB
testcase_04 AC 472 ms
44,732 KB
testcase_05 AC 476 ms
44,348 KB
testcase_06 AC 481 ms
44,480 KB
testcase_07 AC 476 ms
44,472 KB
testcase_08 AC 464 ms
44,220 KB
testcase_09 AC 490 ms
44,216 KB
testcase_10 AC 465 ms
44,488 KB
testcase_11 AC 476 ms
44,220 KB
testcase_12 AC 468 ms
44,732 KB
testcase_13 AC 954 ms
44,220 KB
testcase_14 AC 960 ms
44,192 KB
testcase_15 AC 969 ms
44,480 KB
testcase_16 AC 945 ms
44,484 KB
testcase_17 AC 959 ms
44,220 KB
testcase_18 AC 953 ms
44,352 KB
testcase_19 AC 951 ms
44,612 KB
testcase_20 AC 949 ms
44,732 KB
testcase_21 AC 947 ms
44,220 KB
testcase_22 AC 930 ms
44,348 KB
testcase_23 AC 942 ms
44,228 KB
testcase_24 AC 1,068 ms
44,356 KB
testcase_25 AC 954 ms
44,228 KB
testcase_26 AC 973 ms
44,220 KB
testcase_27 AC 949 ms
44,476 KB
testcase_28 AC 951 ms
44,728 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3.8
# %%
import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines
import numpy as np
MOD = 10 ** 9 + 7

# %%
N, M, K = map(int, readline().split())
LR = np.array(read().split(), np.int32)
L = LR[::2]
R = LR[1::2]
L.flags.writeable = False
R.flags.writeable = False

# %%
dp = np.zeros(N + 2, np.int64)
dp[1] = 1
for _ in range(K):
    newdp = np.zeros_like(dp)
    np.cumsum(dp, out=dp)
    dp %= MOD
    x = dp[R] - dp[L - 1]
    np.add.at(newdp, L, x)
    np.add.at(newdp, R + 1, -x)
    np.cumsum(newdp, out=newdp)
    newdp %= MOD
    dp = newdp

# %%
print(dp[N])
0