結果
問題 | No.1340 おーじ君をさがせ |
ユーザー | hir355 |
提出日時 | 2021-01-15 22:39:19 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 817 bytes |
コンパイル時間 | 241 ms |
コンパイル使用メモリ | 82,432 KB |
実行使用メモリ | 93,184 KB |
最終ジャッジ日時 | 2024-05-05 02:54:15 |
合計ジャッジ時間 | 17,017 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 42 ms
57,984 KB |
testcase_01 | AC | 41 ms
52,352 KB |
testcase_02 | AC | 41 ms
52,352 KB |
testcase_03 | AC | 41 ms
51,840 KB |
testcase_04 | AC | 41 ms
51,968 KB |
testcase_05 | AC | 40 ms
51,840 KB |
testcase_06 | AC | 40 ms
51,968 KB |
testcase_07 | AC | 41 ms
52,352 KB |
testcase_08 | AC | 41 ms
51,968 KB |
testcase_09 | AC | 40 ms
51,840 KB |
testcase_10 | AC | 73 ms
68,096 KB |
testcase_11 | AC | 1,019 ms
80,640 KB |
testcase_12 | AC | 263 ms
77,376 KB |
testcase_13 | AC | 600 ms
79,104 KB |
testcase_14 | AC | 1,534 ms
82,432 KB |
testcase_15 | AC | 1,274 ms
81,920 KB |
testcase_16 | AC | 240 ms
76,800 KB |
testcase_17 | AC | 478 ms
78,208 KB |
testcase_18 | AC | 786 ms
80,128 KB |
testcase_19 | AC | 129 ms
76,188 KB |
testcase_20 | AC | 111 ms
75,960 KB |
testcase_21 | AC | 367 ms
77,952 KB |
testcase_22 | AC | 836 ms
78,592 KB |
testcase_23 | AC | 366 ms
77,056 KB |
testcase_24 | AC | 1,598 ms
80,256 KB |
testcase_25 | AC | 138 ms
77,056 KB |
testcase_26 | AC | 122 ms
76,928 KB |
testcase_27 | AC | 121 ms
76,564 KB |
testcase_28 | AC | 150 ms
77,440 KB |
testcase_29 | AC | 99 ms
76,288 KB |
testcase_30 | AC | 394 ms
77,312 KB |
testcase_31 | AC | 1,545 ms
79,616 KB |
testcase_32 | TLE | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
testcase_45 | -- | - |
testcase_46 | -- | - |
testcase_47 | -- | - |
testcase_48 | -- | - |
testcase_49 | -- | - |
testcase_50 | -- | - |
testcase_51 | -- | - |
testcase_52 | -- | - |
testcase_53 | -- | - |
testcase_54 | -- | - |
testcase_55 | -- | - |
testcase_56 | -- | - |
testcase_57 | -- | - |
testcase_58 | -- | - |
testcase_59 | -- | - |
testcase_60 | -- | - |
testcase_61 | -- | - |
ソースコード
INF = 10 ** 19 n, m, t = map(int, input().split()) mat = [[INF] * n for _ in range(n)] for _ in range(m): a, b = map(int, input().split()) mat[a][b] = 1 res = [[INF] * n for _ in range(n)] for i in range(n): res[i][i] = 0 while t > 0: if t & 1: tmp = [[INF] * n for _ in range(n)] for i in range(n): for j in range(n): for k in range(n): tmp[i][j] = min(tmp[i][j], res[i][k] + mat[k][j]) res = [row[:] for row in tmp] tmp = [[INF] * n for _ in range(n)] for i in range(n): for j in range(n): for k in range(n): tmp[i][j] = min(tmp[i][j], mat[i][k] + mat[k][j]) mat = [row[:] for row in tmp] t //= 2 ans = 0 for i in range(n): if res[0][i] < INF: ans += 1 print(ans)