Skip to content

Commit 4c75967

Browse files
committed
final fix
1 parent 25d64d3 commit 4c75967

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

tests/library_checker_aizu_tests/math/matrix_determinant.test.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@ int main() {
66
cin.tie(0)->sync_with_stdio(0);
77
int n;
88
cin >> n;
9-
vector<vector<mint>> matrix(n, vector<mint>(n));
9+
vector<vector<int>> matrix(n, vector<int>(n));
1010
for (int i = 0; i < n; i++)
11-
for (int j = 0; j < n; j++) cin >> matrix[i][j].x;
11+
for (int j = 0; j < n; j++) cin >> matrix[i][j];
1212
auto [rank, det] = row_reduce(matrix, n);
13-
cout << det.x << '\n';
13+
cout << det << '\n';
1414
return 0;
1515
}

0 commit comments

Comments
 (0)