結果

問題 No.1340 おーじ君をさがせ
ユーザー terry_u16terry_u16
提出日時 2021-01-15 22:41:06
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 757 bytes
コンパイル時間 226 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 82,560 KB
最終ジャッジ日時 2024-05-05 02:56:43
合計ジャッジ時間 42,193 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
60,672 KB
testcase_01 AC 50 ms
60,544 KB
testcase_02 AC 41 ms
51,968 KB
testcase_03 AC 44 ms
59,264 KB
testcase_04 AC 46 ms
60,544 KB
testcase_05 AC 36 ms
52,352 KB
testcase_06 AC 47 ms
61,184 KB
testcase_07 AC 51 ms
62,336 KB
testcase_08 AC 39 ms
51,968 KB
testcase_09 AC 42 ms
52,352 KB
testcase_10 AC 53 ms
63,232 KB
testcase_11 AC 530 ms
78,720 KB
testcase_12 AC 167 ms
75,136 KB
testcase_13 AC 263 ms
78,848 KB
testcase_14 AC 649 ms
80,640 KB
testcase_15 AC 496 ms
80,000 KB
testcase_16 AC 139 ms
74,624 KB
testcase_17 AC 207 ms
77,952 KB
testcase_18 AC 363 ms
79,104 KB
testcase_19 AC 69 ms
67,584 KB
testcase_20 AC 68 ms
66,944 KB
testcase_21 AC 270 ms
78,464 KB
testcase_22 AC 611 ms
80,256 KB
testcase_23 AC 258 ms
78,564 KB
testcase_24 AC 1,079 ms
82,048 KB
testcase_25 AC 100 ms
77,056 KB
testcase_26 AC 97 ms
76,672 KB
testcase_27 AC 91 ms
76,544 KB
testcase_28 AC 119 ms
77,312 KB
testcase_29 AC 77 ms
73,728 KB
testcase_30 AC 299 ms
78,464 KB
testcase_31 AC 1,100 ms
82,304 KB
testcase_32 AC 797 ms
82,048 KB
testcase_33 AC 793 ms
81,792 KB
testcase_34 AC 1,175 ms
82,176 KB
testcase_35 AC 1,166 ms
82,304 KB
testcase_36 AC 37 ms
52,352 KB
testcase_37 AC 67 ms
72,704 KB
testcase_38 AC 808 ms
81,920 KB
testcase_39 TLE -
testcase_40 TLE -
testcase_41 TLE -
testcase_42 AC 49 ms
61,184 KB
testcase_43 AC 44 ms
60,544 KB
testcase_44 AC 47 ms
61,440 KB
testcase_45 AC 53 ms
61,312 KB
testcase_46 TLE -
testcase_47 TLE -
testcase_48 TLE -
testcase_49 TLE -
testcase_50 TLE -
testcase_51 TLE -
testcase_52 AC 1,489 ms
82,048 KB
testcase_53 AC 1,493 ms
81,408 KB
testcase_54 AC 1,503 ms
81,664 KB
testcase_55 AC 1,428 ms
82,048 KB
testcase_56 AC 48 ms
60,672 KB
testcase_57 AC 49 ms
60,928 KB
testcase_58 AC 39 ms
52,608 KB
testcase_59 AC 801 ms
81,536 KB
testcase_60 AC 37 ms
52,352 KB
testcase_61 AC 828 ms
82,048 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, edgeCount, timeLimit = map(int, input().split())
doubling = [[[False] * n for _ in range(n)] for _ in range(61)]

for _ in range(edgeCount):
    u, v = map(int, input().split())
    doubling[0][u][v] = True

for d in range(60):
    for u in range(n):
        for v in range(n):
            for w in range(n):
                doubling[d + 1][u][w] |= doubling[d][u][v] and doubling[d][v][w]

current = [False] * n
current[0] = True

for d in range(60):
    if ((timeLimit >> d) & 1) > 0:
        nxt = [False] * n
        for u in range(n):
            if current[u]:
                for v in range(n):
                    nxt[v] |= doubling[d][u][v]
        current = nxt

count = 0

for v in range(n):
    if current[v]:
        count += 1

print(count)
0