結果

問題 No.1340 おーじ君をさがせ
ユーザー maspymaspy
提出日時 2020-09-26 16:43:54
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 316 bytes
コンパイル時間 131 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 46,880 KB
最終ジャッジ日時 2024-05-05 02:31:13
合計ジャッジ時間 30,041 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 445 ms
46,532 KB
testcase_01 WA -
testcase_02 AC 451 ms
44,436 KB
testcase_03 AC 449 ms
46,292 KB
testcase_04 AC 446 ms
44,568 KB
testcase_05 AC 444 ms
44,568 KB
testcase_06 AC 441 ms
44,320 KB
testcase_07 AC 439 ms
44,568 KB
testcase_08 AC 440 ms
44,064 KB
testcase_09 WA -
testcase_10 AC 445 ms
44,572 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 470 ms
44,704 KB
testcase_22 AC 455 ms
44,700 KB
testcase_23 AC 462 ms
46,056 KB
testcase_24 AC 452 ms
44,960 KB
testcase_25 AC 466 ms
44,440 KB
testcase_26 AC 446 ms
44,960 KB
testcase_27 AC 449 ms
46,660 KB
testcase_28 AC 448 ms
44,564 KB
testcase_29 AC 450 ms
44,696 KB
testcase_30 AC 453 ms
44,836 KB
testcase_31 AC 456 ms
46,612 KB
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 AC 443 ms
44,064 KB
testcase_38 WA -
testcase_39 AC 455 ms
44,832 KB
testcase_40 AC 454 ms
44,840 KB
testcase_41 AC 451 ms
46,232 KB
testcase_42 AC 464 ms
44,324 KB
testcase_43 AC 441 ms
44,688 KB
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 AC 441 ms
44,444 KB
testcase_50 AC 444 ms
44,696 KB
testcase_51 AC 440 ms
46,512 KB
testcase_52 AC 443 ms
45,088 KB
testcase_53 AC 440 ms
44,448 KB
testcase_54 AC 439 ms
46,108 KB
testcase_55 WA -
testcase_56 AC 446 ms
46,148 KB
testcase_57 AC 443 ms
44,312 KB
testcase_58 AC 436 ms
44,324 KB
testcase_59 AC 436 ms
44,696 KB
testcase_60 AC 438 ms
44,056 KB
testcase_61 AC 441 ms
44,744 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

"""経路数を数える。小数で数えればよい。"""
import numpy as np

MOD = 10**9 + 7

N, M, T, *G = map(int, open(0).read().split())
A = np.zeros((N, N))
for frm, to in zip(G[::2], G[1::2]):
    A[frm,to] += 1

B = np.linalg.matrix_power(A, T)
ans = np.sum(B[0] != 0)
if ans == 0:
    ans = -1
print(ans)
0