結果
問題 | No.1111 コード進行 |
ユーザー | xuanji |
提出日時 | 2020-07-10 22:33:52 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 889 bytes |
コンパイル時間 | 676 ms |
コンパイル使用メモリ | 82,080 KB |
実行使用メモリ | 288,908 KB |
最終ジャッジ日時 | 2024-10-11 09:54:12 |
合計ジャッジ時間 | 16,360 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 44 ms
62,316 KB |
testcase_01 | AC | 47 ms
55,676 KB |
testcase_02 | WA | - |
testcase_03 | AC | 44 ms
56,256 KB |
testcase_04 | AC | 45 ms
56,076 KB |
testcase_05 | WA | - |
testcase_06 | AC | 75 ms
74,972 KB |
testcase_07 | AC | 82 ms
78,064 KB |
testcase_08 | AC | 54 ms
64,880 KB |
testcase_09 | WA | - |
testcase_10 | AC | 46 ms
55,860 KB |
testcase_11 | AC | 50 ms
61,996 KB |
testcase_12 | WA | - |
testcase_13 | AC | 45 ms
55,308 KB |
testcase_14 | AC | 284 ms
95,180 KB |
testcase_15 | AC | 46 ms
56,456 KB |
testcase_16 | AC | 92 ms
78,932 KB |
testcase_17 | AC | 45 ms
55,452 KB |
testcase_18 | AC | 44 ms
55,728 KB |
testcase_19 | AC | 44 ms
55,840 KB |
testcase_20 | AC | 46 ms
57,632 KB |
testcase_21 | AC | 45 ms
56,816 KB |
testcase_22 | AC | 44 ms
55,184 KB |
testcase_23 | AC | 47 ms
56,440 KB |
testcase_24 | AC | 49 ms
62,664 KB |
testcase_25 | AC | 219 ms
99,280 KB |
testcase_26 | RE | - |
testcase_27 | AC | 52 ms
63,080 KB |
testcase_28 | AC | 44 ms
55,892 KB |
testcase_29 | AC | 46 ms
56,816 KB |
testcase_30 | RE | - |
testcase_31 | WA | - |
testcase_32 | TLE | - |
testcase_33 | TLE | - |
testcase_34 | AC | 44 ms
55,240 KB |
testcase_35 | AC | 45 ms
55,720 KB |
testcase_36 | AC | 93 ms
77,544 KB |
testcase_37 | AC | 186 ms
83,676 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 python3from collections import defaultdictfrom sys import stdin, stdoutdef 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 1return 0if target < 0: return 0ret = 0for (prev, cost) in neighbours[last]:ret += ans(length-1, prev, target-cost)return retneighbours = 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, M+1))MODULUS = 10**9+7if ret >= MODULUS:assert(False)else:print(ret)