結果
問題 | No.1340 おーじ君をさがせ |
ユーザー | shinchan |
提出日時 | 2020-09-22 03:27:44 |
言語 | Python3 (3.13.1 + numpy 2.2.1 + scipy 1.14.1) |
結果 |
WA
|
実行時間 | - |
コード長 | 785 bytes |
コンパイル時間 | 81 ms |
コンパイル使用メモリ | 12,672 KB |
実行使用メモリ | 22,272 KB |
最終ジャッジ日時 | 2024-11-26 19:12:27 |
合計ジャッジ時間 | 73,632 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 30 ms
16,384 KB |
testcase_01 | WA | - |
testcase_02 | AC | 31 ms
16,256 KB |
testcase_03 | AC | 30 ms
21,888 KB |
testcase_04 | AC | 30 ms
16,256 KB |
testcase_05 | AC | 29 ms
21,760 KB |
testcase_06 | AC | 30 ms
16,128 KB |
testcase_07 | AC | 30 ms
21,760 KB |
testcase_08 | AC | 30 ms
16,256 KB |
testcase_09 | WA | - |
testcase_10 | AC | 41 ms
16,384 KB |
testcase_11 | WA | - |
testcase_12 | AC | 252 ms
16,256 KB |
testcase_13 | WA | - |
testcase_14 | TLE | - |
testcase_15 | TLE | - |
testcase_16 | AC | 200 ms
17,700 KB |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | AC | 43 ms
16,128 KB |
testcase_21 | AC | 1,546 ms
17,700 KB |
testcase_22 | TLE | - |
testcase_23 | AC | 1,553 ms
10,880 KB |
testcase_24 | TLE | - |
testcase_25 | AC | 192 ms
10,880 KB |
testcase_26 | AC | 129 ms
10,880 KB |
testcase_27 | AC | 98 ms
10,880 KB |
testcase_28 | AC | 264 ms
10,880 KB |
testcase_29 | AC | 54 ms
10,752 KB |
testcase_30 | AC | 1,688 ms
10,880 KB |
testcase_31 | TLE | - |
testcase_32 | TLE | - |
testcase_33 | TLE | - |
testcase_34 | TLE | - |
testcase_35 | TLE | - |
testcase_36 | WA | - |
testcase_37 | AC | 60 ms
11,008 KB |
testcase_38 | TLE | - |
testcase_39 | TLE | - |
testcase_40 | TLE | - |
testcase_41 | TLE | - |
testcase_42 | AC | 31 ms
10,880 KB |
testcase_43 | AC | 31 ms
11,008 KB |
testcase_44 | WA | - |
testcase_45 | WA | - |
testcase_46 | AC | 1,528 ms
11,136 KB |
testcase_47 | AC | 1,640 ms
11,008 KB |
testcase_48 | AC | 1,809 ms
10,880 KB |
testcase_49 | AC | 1,812 ms
10,880 KB |
testcase_50 | AC | 1,802 ms
11,008 KB |
testcase_51 | AC | 1,815 ms
10,880 KB |
testcase_52 | TLE | - |
testcase_53 | TLE | - |
testcase_54 | TLE | - |
testcase_55 | TLE | - |
testcase_56 | AC | 31 ms
11,008 KB |
testcase_57 | AC | 30 ms
10,752 KB |
testcase_58 | AC | 30 ms
10,880 KB |
testcase_59 | AC | 1,057 ms
11,008 KB |
testcase_60 | AC | 30 ms
10,752 KB |
testcase_61 | AC | 1,057 ms
22,272 KB |
ソースコード
(n, m, t) = map(int,input().split()) def mul(a, b): c = [[0 for j in range(n)] for i in range(n)] for i in range(n): for j in range(n): c[i][j] = 0 for k in range(n): c[i][j] |= a[i][k] & b[k][j] return c G = [[0 for j in range(n)] for i in range(n)] for i in range(n): for j in range(n): G[i][j] = 0 for i in range(m): (a, b) = map(int,input().split()) G[b][a] = 1 A = [[0 for j in range(n)] for i in range(n)] for i in range(n): for j in range(n): A[i][j] = 0 for i in range(n): A[i][i] = 1 while t: if t % 2 == 1: A = mul(A, G) G = mul(G, G) t = t // 2 ans = 0 for i in range(n): ans += A[i][0] if ans == 0: print(-1) else: print(ans)