5.23 VJ E - Candies and Two Sisters

Posted syrupwrld999

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了5.23 VJ E - Candies and Two Sisters相关的知识,希望对你有一定的参考价值。

#include<bits/stdc++.h>
#define ll long long
using namespace std;
/*
题意:A和B两人分n个糖,每人最少一个,且A分得的数量要大于B,只要分奇偶情况输出就行
*/
int main()
{
    ll t,n;
    cin>>t;
    for(int i=0;i<t;i++)
    {
        cin>>n;
        if(n%2==0)
        {
            cout<<n/2-1<<endl;
        }
        else{
            cout<<n/2<<endl;
        }
    }
}

以上是关于5.23 VJ E - Candies and Two Sisters的主要内容,如果未能解决你的问题,请参考以下文章

5.23 Vj B - Balanced Array

Henu ACM Round#19 E Om Nom and Candies

D. Alice, Bob and Candies1300 / 模拟

5.19 Vj E - Nastya and Rice

Vj A - Phoenix and Balance

5.23每日一题题解