結果

問題 No.2444 一次変換と体積
ユーザー titiatitia
提出日時 2023-08-29 00:15:12
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 167 bytes
コンパイル時間 394 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 44,684 KB
最終ジャッジ日時 2024-06-09 18:42:44
合計ジャッジ時間 12,607 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 485 ms
44,428 KB
testcase_01 AC 486 ms
44,304 KB
testcase_02 AC 475 ms
44,176 KB
testcase_03 AC 525 ms
44,684 KB
testcase_04 AC 450 ms
44,300 KB
testcase_05 AC 453 ms
44,296 KB
testcase_06 AC 487 ms
44,036 KB
testcase_07 AC 448 ms
44,684 KB
testcase_08 AC 446 ms
44,428 KB
testcase_09 AC 447 ms
44,428 KB
testcase_10 AC 448 ms
44,424 KB
testcase_11 AC 451 ms
44,172 KB
testcase_12 AC 449 ms
44,036 KB
testcase_13 AC 469 ms
44,160 KB
testcase_14 AC 483 ms
44,676 KB
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 AC 459 ms
44,556 KB
testcase_19 AC 449 ms
44,304 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import numpy as np

N,B=map(int,input().split())
A=[list(map(int,input().split())) for i in range(3)]

A=np.matrix(A)
D=np.linalg.det(A)

print(pow(abs(round(D)),N,B))
0