結果
問題 | No.1111 コード進行 |
ユーザー | xuanji |
提出日時 | 2020-07-10 22:13:58 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 870 bytes |
コンパイル時間 | 145 ms |
コンパイル使用メモリ | 82,584 KB |
実行使用メモリ | 302,860 KB |
最終ジャッジ日時 | 2024-10-11 09:31:45 |
合計ジャッジ時間 | 14,597 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 48 ms
60,160 KB |
testcase_01 | AC | 45 ms
55,424 KB |
testcase_02 | WA | - |
testcase_03 | AC | 45 ms
54,656 KB |
testcase_04 | AC | 46 ms
54,784 KB |
testcase_05 | WA | - |
testcase_06 | AC | 83 ms
77,520 KB |
testcase_07 | AC | 85 ms
77,952 KB |
testcase_08 | AC | 58 ms
64,128 KB |
testcase_09 | WA | - |
testcase_10 | AC | 47 ms
55,168 KB |
testcase_11 | AC | 51 ms
61,824 KB |
testcase_12 | WA | - |
testcase_13 | AC | 46 ms
54,912 KB |
testcase_14 | AC | 285 ms
95,312 KB |
testcase_15 | AC | 47 ms
55,552 KB |
testcase_16 | AC | 92 ms
78,976 KB |
testcase_17 | AC | 45 ms
55,168 KB |
testcase_18 | AC | 45 ms
54,784 KB |
testcase_19 | AC | 45 ms
54,912 KB |
testcase_20 | AC | 49 ms
55,680 KB |
testcase_21 | AC | 45 ms
55,424 KB |
testcase_22 | AC | 45 ms
55,552 KB |
testcase_23 | AC | 46 ms
56,320 KB |
testcase_24 | AC | 50 ms
60,544 KB |
testcase_25 | AC | 219 ms
98,920 KB |
testcase_26 | WA | - |
testcase_27 | AC | 51 ms
61,440 KB |
testcase_28 | AC | 45 ms
54,656 KB |
testcase_29 | AC | 45 ms
55,296 KB |
testcase_30 | WA | - |
testcase_31 | WA | - |
testcase_32 | TLE | - |
testcase_33 | TLE | - |
testcase_34 | AC | 45 ms
55,424 KB |
testcase_35 | AC | 44 ms
55,168 KB |
testcase_36 | AC | 95 ms
77,716 KB |
testcase_37 | AC | 190 ms
84,432 KB |
testcase_38 | WA | - |
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 from collections import defaultdict from sys import stdin, stdout def input(): return stdin.readline().strip() MODULUS = 10**9+7 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) ret = ret % MODULUS 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)) print(sum(ans(N, v, K) for v in range(1, M+1)) % MODULUS)