結果
問題 | No.1340 おーじ君をさがせ |
ユーザー | hir355 |
提出日時 | 2021-01-15 22:37:47 |
言語 | PyPy3 (7.3.15) |
結果 |
WA
|
実行時間 | - |
コード長 | 825 bytes |
コンパイル時間 | 193 ms |
コンパイル使用メモリ | 82,176 KB |
実行使用メモリ | 93,312 KB |
最終ジャッジ日時 | 2024-05-05 02:53:48 |
合計ジャッジ時間 | 16,945 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 43 ms
58,112 KB |
testcase_01 | AC | 42 ms
52,224 KB |
testcase_02 | AC | 41 ms
51,712 KB |
testcase_03 | AC | 42 ms
52,224 KB |
testcase_04 | WA | - |
testcase_05 | AC | 41 ms
51,712 KB |
testcase_06 | WA | - |
testcase_07 | AC | 42 ms
52,352 KB |
testcase_08 | AC | 42 ms
51,968 KB |
testcase_09 | AC | 41 ms
51,712 KB |
testcase_10 | AC | 73 ms
68,096 KB |
testcase_11 | AC | 836 ms
80,512 KB |
testcase_12 | WA | - |
testcase_13 | AC | 604 ms
78,720 KB |
testcase_14 | AC | 1,539 ms
82,432 KB |
testcase_15 | AC | 1,259 ms
81,920 KB |
testcase_16 | AC | 236 ms
77,056 KB |
testcase_17 | AC | 480 ms
78,336 KB |
testcase_18 | AC | 786 ms
80,512 KB |
testcase_19 | AC | 129 ms
76,160 KB |
testcase_20 | AC | 107 ms
76,032 KB |
testcase_21 | AC | 370 ms
77,696 KB |
testcase_22 | AC | 852 ms
78,336 KB |
testcase_23 | AC | 466 ms
77,312 KB |
testcase_24 | AC | 1,619 ms
79,744 KB |
testcase_25 | AC | 142 ms
77,312 KB |
testcase_26 | AC | 125 ms
76,928 KB |
testcase_27 | AC | 121 ms
76,576 KB |
testcase_28 | AC | 154 ms
77,184 KB |
testcase_29 | AC | 104 ms
76,220 KB |
testcase_30 | AC | 394 ms
77,312 KB |
testcase_31 | AC | 1,559 ms
79,360 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 - 1][b - 1] = 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)