結果

問題 No.2443 特殊線形群の標準表現
ユーザー hibit_athibit_at
提出日時 2023-08-25 21:52:14
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 891 bytes
コンパイル時間 379 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 102,264 KB
最終ジャッジ日時 2024-06-06 16:17:35
合計ジャッジ時間 13,126 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 426 ms
43,712 KB
testcase_01 AC 428 ms
43,460 KB
testcase_02 AC 428 ms
43,716 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 473 ms
43,744 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 AC 440 ms
43,456 KB
testcase_10 RE -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 TLE -
testcase_16 -- -
testcase_17 -- -
testcase_18 -- -
testcase_19 -- -
testcase_20 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np

n,b,q = list(map(int, input().split(' ')))
mat_list = []
for i in range(n):
    c = list(map(int, input().split(' ')))
    d = list(map(int, input().split(' ')))
    # c = [x%b for x in c]
    # d = [x%b for x in c]
    mat_list.append(np.array([c,d]))
# print(*mat_list)
mat_sum = []
mat_sum.append(np.array([[1,0],[0,1]]))
for i in range(n):
    tail = mat_sum[-1]
    next = np.matmul(mat_list[i],tail)
    next = [x%b for x in next]
    mat_sum.append(next)
# print(*mat_sum)
for _ in range(q):
    L,R,x,y = list(map(int, input().split(' ')))
    # print(L,R,x,y)
    total = mat_sum[R]
    # print(total)
    hosei = np.linalg.inv(mat_sum[L])
    hosei = np.array(hosei,dtype='int64')
    # print(hosei)
    valid = np.matmul(hosei,total)
    # print(valid)
    target = np.array([x,y])
    ans = np.matmul(valid,target)
    ans = [a%b for a in ans]
    print(*ans)
0