Counting Derangements Problem
A derangement is a permutation of 'N' elements, where no element appears in its original position. For instance, a derangement of {0, 1, 2, 3} is {2, 3, 1, 0} because each element is not in its original position.
Problem Statement:
Given a number 'N', find the total number of derangements possible for a set of 'N' elements.
Input:
The first line of input contains an integer 'T', representing the number of test cases.
The subsequent lines contain an integer 'N' for each test case, representing the number of elements for which derangements need to be counted.
Output:
For each test case, return the total number of derangements of a set of 'N' elements.
Example:
Input:
T = 1
N = 3
Output:
2
The possible derangements are {1, 2, 0} and {2, 0, 1}.
Constraints:
1 ≤ T ≤ 100
1 ≤ N ≤ 3000
Note: The result could be very large, return the answer modulo (10^9 + 7).

AnswerBot
4mo
Count the total number of derangements possible for a set of 'N' elements.
A derangement is a permutation where no element appears in its original position.
Use the formula for derangements: !n = n! * (...read more
Help your peers!
Add answer anonymously...
Nagarro Technical Trainee interview questions & answers
A Technical Trainee was asked Q. Detect and Remove Loop in Linked List For a given singly linked list, identify i...read more
A Technical Trainee was asked Q. Trapping Rainwater Problem Statement You are given an array ARR of long type, wh...read more
A Technical Trainee was asked Q. Spiral Order Traversal of a Binary Tree Given a binary tree with N nodes, your t...read more
Popular interview questions of Technical Trainee
A Technical Trainee was asked Q1. Detect and Remove Loop in Linked List For a given singly linked list, identify i...read more
A Technical Trainee was asked Q2. Trapping Rainwater Problem Statement You are given an array ARR of long type, wh...read more
A Technical Trainee was asked Q3. Spiral Order Traversal of a Binary Tree Given a binary tree with N nodes, your t...read more
Stay ahead in your career. Get AmbitionBox app


Trusted by over 1.5 Crore job seekers to find their right fit company
80 L+
Reviews
10L+
Interviews
4 Cr+
Salaries
1.5 Cr+
Users
Contribute to help millions
AmbitionBox Awards
Get AmbitionBox app

