B. Party

来源:互联网 发布:知乎收入 编辑:程序博客网 时间:2024/04/30 02:27
B. Party
time limit per test
2 seconds
memory limit per test
256 megabytes
input
standard input
output
standard output

n people came to a party. Then those, who had no friends among people at the party, left. Then those, who had exactly 1 friend among those who stayed, left as well. Then those, who had exactly2, 3, ..., n - 1 friends among those who stayed by the moment of their leaving, did the same.

What is the maximum amount of people that could stay at the party in the end?

Input

The first input line contains one number t — amount of tests (1 ≤ t ≤ 105). Each of the followingt lines contains one integer number n (1 ≤ n ≤ 105).

Output

For each test output in a separate line one number — the maximum amount of people that could stay in the end.

Sample test(s)
Input
13
Output
1
#include<iostream>#include<stdio.h>using namespace std;int main(){    int T;    int n;    scanf("%d",&T);    while(T--)    {        scanf("%d",&n);        printf("%d\n",max(0,n-2));    }    return 0;}