結果
問題 | No.1111 コード進行 |
ユーザー | xuanji |
提出日時 | 2020-07-10 22:38:30 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 852 bytes |
コンパイル時間 | 406 ms |
コンパイル使用メモリ | 82,688 KB |
実行使用メモリ | 288,816 KB |
最終ジャッジ日時 | 2024-10-11 13:20:30 |
合計ジャッジ時間 | 12,694 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 56 ms
67,236 KB |
testcase_01 | AC | 55 ms
60,416 KB |
testcase_02 | AC | 55 ms
60,416 KB |
testcase_03 | AC | 55 ms
60,672 KB |
testcase_04 | AC | 58 ms
60,672 KB |
testcase_05 | AC | 56 ms
60,544 KB |
testcase_06 | AC | 105 ms
77,184 KB |
testcase_07 | AC | 103 ms
78,592 KB |
testcase_08 | AC | 63 ms
64,000 KB |
testcase_09 | AC | 104 ms
77,696 KB |
testcase_10 | AC | 61 ms
64,128 KB |
testcase_11 | AC | 61 ms
62,208 KB |
testcase_12 | AC | 171 ms
84,992 KB |
testcase_13 | AC | 57 ms
61,056 KB |
testcase_14 | AC | 311 ms
95,188 KB |
testcase_15 | AC | 56 ms
61,312 KB |
testcase_16 | AC | 115 ms
79,744 KB |
testcase_17 | AC | 56 ms
60,928 KB |
testcase_18 | AC | 55 ms
60,544 KB |
testcase_19 | AC | 55 ms
60,672 KB |
testcase_20 | AC | 59 ms
62,080 KB |
testcase_21 | AC | 56 ms
60,928 KB |
testcase_22 | AC | 56 ms
60,928 KB |
testcase_23 | AC | 59 ms
61,824 KB |
testcase_24 | AC | 73 ms
68,224 KB |
testcase_25 | AC | 241 ms
99,476 KB |
testcase_26 | AC | 233 ms
85,356 KB |
testcase_27 | AC | 61 ms
62,976 KB |
testcase_28 | AC | 57 ms
61,056 KB |
testcase_29 | AC | 66 ms
65,920 KB |
testcase_30 | AC | 1,758 ms
275,896 KB |
testcase_31 | AC | 157 ms
81,152 KB |
testcase_32 | TLE | - |
testcase_33 | TLE | - |
testcase_34 | AC | 102 ms
77,440 KB |
testcase_35 | AC | 56 ms
60,672 KB |
testcase_36 | AC | 121 ms
77,440 KB |
testcase_37 | AC | 202 ms
84,052 KB |
testcase_38 | TLE | - |
testcase_39 | TLE | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
testcase_45 | -- | - |
testcase_46 | -- | - |
testcase_47 | -- | - |
testcase_48 | -- | - |
testcase_49 | -- | - |
ソースコード
#!/usr/bin/env python3 MODULUS = 10**9+7 from collections import defaultdict from sys import stdin, stdout def input(): return stdin.readline().strip() N, M, K = input().split(' ') N = int(N) M = int(M) K = int(K) from functools import lru_cache @lru_cache(None) def ans(length, last, target): # how many length-`length` progressions are there with last chord `last` and complexity `target` if length == 1: if target == 0: return 1 return 0 if target < 0: return 0 ret = 0 for (prev, cost) in neighbours[last]: ret += ans(length-1, prev, target-cost) return ret neighbours = defaultdict(set) for _ in range(M): P, Q, C = input().split(' ') P = int(P) Q = int(Q) C = int(C) neighbours[Q].add((P, C)) ret = sum(ans(N, v, K) for v in range(1, 301)) print(ret % MODULUS)