結果

問題 No.1340 おーじ君をさがせ
ユーザー gorugo30gorugo30
提出日時 2021-01-15 22:22:26
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 520 bytes
コンパイル時間 502 ms
コンパイル使用メモリ 82,288 KB
実行使用メモリ 80,084 KB
最終ジャッジ日時 2024-11-26 19:49:20
合計ジャッジ時間 11,364 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
59,252 KB
testcase_01 AC 38 ms
53,312 KB
testcase_02 AC 38 ms
52,628 KB
testcase_03 AC 38 ms
53,424 KB
testcase_04 AC 39 ms
52,956 KB
testcase_05 AC 39 ms
53,288 KB
testcase_06 AC 38 ms
52,872 KB
testcase_07 AC 38 ms
52,952 KB
testcase_08 AC 38 ms
52,064 KB
testcase_09 AC 38 ms
52,356 KB
testcase_10 RE -
testcase_11 AC 52 ms
64,088 KB
testcase_12 AC 61 ms
66,028 KB
testcase_13 AC 46 ms
61,088 KB
testcase_14 AC 53 ms
64,604 KB
testcase_15 AC 45 ms
60,288 KB
testcase_16 AC 59 ms
63,548 KB
testcase_17 AC 46 ms
60,408 KB
testcase_18 AC 45 ms
60,868 KB
testcase_19 AC 45 ms
59,412 KB
testcase_20 AC 48 ms
61,260 KB
testcase_21 AC 197 ms
76,620 KB
testcase_22 AC 393 ms
77,596 KB
testcase_23 AC 191 ms
76,872 KB
testcase_24 AC 689 ms
79,840 KB
testcase_25 RE -
testcase_26 RE -
testcase_27 AC 76 ms
73,484 KB
testcase_28 AC 96 ms
77,140 KB
testcase_29 AC 71 ms
72,576 KB
testcase_30 AC 209 ms
77,152 KB
testcase_31 RE -
testcase_32 AC 78 ms
76,788 KB
testcase_33 AC 79 ms
77,104 KB
testcase_34 AC 146 ms
76,680 KB
testcase_35 AC 150 ms
76,752 KB
testcase_36 AC 39 ms
53,264 KB
testcase_37 RE -
testcase_38 RE -
testcase_39 AC 543 ms
76,768 KB
testcase_40 AC 528 ms
76,744 KB
testcase_41 AC 529 ms
77,064 KB
testcase_42 AC 40 ms
53,492 KB
testcase_43 AC 39 ms
53,628 KB
testcase_44 AC 38 ms
52,876 KB
testcase_45 AC 38 ms
52,884 KB
testcase_46 AC 372 ms
79,716 KB
testcase_47 AC 370 ms
79,720 KB
testcase_48 AC 371 ms
80,072 KB
testcase_49 AC 528 ms
73,100 KB
testcase_50 AC 527 ms
73,400 KB
testcase_51 AC 527 ms
73,216 KB
testcase_52 AC 51 ms
64,976 KB
testcase_53 AC 50 ms
64,516 KB
testcase_54 AC 50 ms
64,924 KB
testcase_55 AC 180 ms
80,084 KB
testcase_56 AC 39 ms
52,796 KB
testcase_57 AC 40 ms
54,132 KB
testcase_58 AC 38 ms
52,476 KB
testcase_59 AC 49 ms
62,760 KB
testcase_60 AC 38 ms
53,080 KB
testcase_61 AC 49 ms
63,992 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, M, T = map(int, input().split())

goto = [[set() for j in range(N)] for i in range(60)]
for i in range(N):
    goto[0][i].add(i)
for i in range(M):
    a, b = map(int, input().split())
    goto[1][a].add(b)
for i in range(2, 60):
    for j in range(N):
        goto[i][j] = set()
        for g in goto[i - 1][j]:
            goto[i][j] |= goto[i - 1][g]
ans = set([0])
for i in range(60):
    if T >> i & 1:
        nex = set()
        for g in ans:
            nex |= goto[i + 1][g]
        ans = nex
print(len(ans))
0