結果

問題 No.2444 一次変換と体積
ユーザー KudeKude
提出日時 2023-08-25 21:47:12
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 810 bytes
コンパイル時間 336 ms
コンパイル使用メモリ 82,472 KB
実行使用メモリ 53,572 KB
最終ジャッジ日時 2024-06-06 16:11:29
合計ジャッジ時間 1,799 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,224 KB
testcase_01 AC 37 ms
52,480 KB
testcase_02 AC 37 ms
52,608 KB
testcase_03 AC 38 ms
51,968 KB
testcase_04 AC 37 ms
52,224 KB
testcase_05 AC 37 ms
52,736 KB
testcase_06 AC 36 ms
51,968 KB
testcase_07 AC 36 ms
52,224 KB
testcase_08 AC 37 ms
52,516 KB
testcase_09 AC 36 ms
52,096 KB
testcase_10 AC 37 ms
51,968 KB
testcase_11 AC 37 ms
51,968 KB
testcase_12 WA -
testcase_13 AC 36 ms
51,840 KB
testcase_14 WA -
testcase_15 AC 38 ms
52,224 KB
testcase_16 AC 37 ms
52,608 KB
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 37 ms
53,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n, b = map(int, input().split())
a = [list(map(int, input().split())) for _ in range(3)]

def mul(X, Y):
    res = [[0] * 3 for _ in range(3)]
    for i in range(3):
        for j in range(3):
            for k in range(3):
                res[i][k] += X[i][j] * Y[j][k]
    for i in range(3):
        for j in range(3):
            res[i][j] %= b
    return res

def det(a):
    res = 0
    for j in range(3):
        v = 1
        for i in range(3):
            v *= a[i][(j+i) % 3]
        res += v
    for j in range(3):
        v = 1
        for i in range(3):
            v *= a[i][(j-i) % 3]
        res -= v
    return res

an = [[int(i == j) for j in range(3)] for i in range(3)]
for k in range(n.bit_length())[::-1]:
    an = mul(an, an)
    if n >> k & 1:
        an = mul(an, a)

print(det(an) % b)
0