結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 545 ms
44,340 KB
testcase_01 AC 540 ms
43,956 KB
testcase_02 AC 539 ms
44,468 KB
testcase_03 AC 556 ms
44,340 KB
testcase_04 AC 544 ms
44,212 KB
testcase_05 AC 549 ms
44,336 KB
testcase_06 AC 552 ms
43,832 KB
testcase_07 AC 546 ms
43,960 KB
testcase_08 AC 554 ms
44,220 KB
testcase_09 AC 559 ms
44,224 KB
testcase_10 AC 561 ms
44,220 KB
testcase_11 AC 557 ms
44,440 KB
testcase_12 AC 554 ms
43,836 KB
testcase_13 AC 959 ms
44,468 KB
testcase_14 AC 946 ms
43,708 KB
testcase_15 AC 957 ms
43,704 KB
testcase_16 AC 950 ms
43,740 KB
testcase_17 AC 956 ms
43,700 KB
testcase_18 AC 953 ms
44,340 KB
testcase_19 AC 955 ms
43,832 KB
testcase_20 AC 944 ms
43,964 KB
testcase_21 AC 943 ms
44,084 KB
testcase_22 AC 953 ms
44,480 KB
testcase_23 AC 975 ms
44,064 KB
testcase_24 AC 1,001 ms
43,832 KB
testcase_25 AC 943 ms
44,340 KB
testcase_26 AC 959 ms
44,224 KB
testcase_27 AC 953 ms
43,840 KB
testcase_28 AC 951 ms
44,220 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)
    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