結果

問題 No.1340 おーじ君をさがせ
ユーザー maspymaspy
提出日時 2020-09-26 18:01:55
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 609 bytes
コンパイル時間 263 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 78,592 KB
最終ジャッジ日時 2024-05-05 02:32:36
合計ジャッジ時間 7,805 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,352 KB
testcase_01 AC 42 ms
51,840 KB
testcase_02 AC 42 ms
51,968 KB
testcase_03 AC 42 ms
51,968 KB
testcase_04 AC 42 ms
51,584 KB
testcase_05 AC 42 ms
51,712 KB
testcase_06 AC 41 ms
51,584 KB
testcase_07 AC 41 ms
51,968 KB
testcase_08 AC 42 ms
51,584 KB
testcase_09 AC 41 ms
51,840 KB
testcase_10 AC 60 ms
61,696 KB
testcase_11 RE -
testcase_12 RE -
testcase_13 RE -
testcase_14 RE -
testcase_15 RE -
testcase_16 RE -
testcase_17 RE -
testcase_18 RE -
testcase_19 RE -
testcase_20 RE -
testcase_21 AC 231 ms
72,704 KB
testcase_22 AC 273 ms
73,600 KB
testcase_23 AC 221 ms
72,704 KB
testcase_24 AC 321 ms
73,344 KB
testcase_25 AC 91 ms
68,992 KB
testcase_26 AC 84 ms
66,816 KB
testcase_27 AC 76 ms
66,048 KB
testcase_28 AC 108 ms
69,504 KB
testcase_29 AC 63 ms
65,408 KB
testcase_30 AC 234 ms
73,216 KB
testcase_31 AC 575 ms
78,080 KB
testcase_32 AC 70 ms
74,880 KB
testcase_33 RE -
testcase_34 RE -
testcase_35 RE -
testcase_36 RE -
testcase_37 AC 56 ms
65,664 KB
testcase_38 RE -
testcase_39 AC 76 ms
74,880 KB
testcase_40 AC 76 ms
72,704 KB
testcase_41 AC 73 ms
72,832 KB
testcase_42 AC 41 ms
52,096 KB
testcase_43 AC 41 ms
51,712 KB
testcase_44 RE -
testcase_45 AC 46 ms
58,368 KB
testcase_46 AC 88 ms
65,152 KB
testcase_47 AC 119 ms
66,304 KB
testcase_48 AC 148 ms
66,816 KB
testcase_49 AC 68 ms
68,096 KB
testcase_50 AC 69 ms
68,736 KB
testcase_51 AC 72 ms
69,760 KB
testcase_52 RE -
testcase_53 RE -
testcase_54 RE -
testcase_55 RE -
testcase_56 AC 51 ms
60,416 KB
testcase_57 AC 51 ms
60,288 KB
testcase_58 AC 51 ms
60,544 KB
testcase_59 AC 51 ms
59,648 KB
testcase_60 AC 41 ms
51,584 KB
testcase_61 AC 52 ms
59,904 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 落としましょうか。
# 周期じゃないところで 2 回到達するとダメな嘘解法

N, M, T, *nums = map(int, open(0).read().split())
G = tuple(set(zip(nums[::2], nums[1::2])))

T_max = min(10000, T)
T0 = [-1] * N
T1 = [-1] * N
dp = [0] * N
dp[0] = 1
for t in range(T_max):
    newdp = [0] * N
    for frm, to in G:
        if dp[frm] and not newdp[to]:
            newdp[to] = 1
            T0[to], T1[to] = T1[to], t
    dp = newdp

ans = 0
for v in range(N):
    if T == T_max:
        ans += dp[v]
    else:
        t0, t1 = T0[v], T1[v]
        ans += (T-t1) % (t1-t0) == 0
print(ans)
0