結果
問題 | No.801 エレベーター |
ユーザー | tempura_pp |
提出日時 | 2019-03-14 05:55:30 |
言語 | Python3 (3.12.2 + numpy 1.26.4 + scipy 1.12.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 497 bytes |
コンパイル時間 | 303 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 131,968 KB |
最終ジャッジ日時 | 2024-06-25 06:33:56 |
合計ジャッジ時間 | 13,207 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 545 ms
93,440 KB |
testcase_01 | AC | 537 ms
87,936 KB |
testcase_02 | AC | 545 ms
88,064 KB |
testcase_03 | AC | 705 ms
90,880 KB |
testcase_04 | AC | 709 ms
90,624 KB |
testcase_05 | AC | 699 ms
90,752 KB |
testcase_06 | AC | 704 ms
90,752 KB |
testcase_07 | AC | 704 ms
90,752 KB |
testcase_08 | AC | 704 ms
90,880 KB |
testcase_09 | AC | 698 ms
90,752 KB |
testcase_10 | AC | 703 ms
90,624 KB |
testcase_11 | AC | 694 ms
90,752 KB |
testcase_12 | AC | 710 ms
90,752 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 | -- | - |
ソースコード
n,m,k=map(int,input().split()) dp=[[0 for i in range(3030)]for j in range(3030)] e=[] for i in range(m) : x,y=map(int,input().split()) e.append([x,y]) mod = 1000000007 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]%=mod for p in e : dp[i+1][p[0]]+=dp[i][p[1]]-dp[i][p[0]-1] dp[i+1][p[1]+1]-=dp[i][p[1]]-dp[i][p[0]-1] for j in range(n): dp[i+1][j+1]+=dp[i+1][j] dp[i+1][j+1]%=mod print(dp[k][n])