結果

問題 No.966 引き算をして門松列(その1)
ユーザー otamay6otamay6
提出日時 2020-01-13 20:56:42
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 1,132 bytes
コンパイル時間 1,385 ms
コンパイル使用メモリ 165,884 KB
実行使用メモリ 4,380 KB
最終ジャッジ日時 2023-08-23 13:43:07
合計ジャッジ時間 1,990 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,380 KB
testcase_01 AC 2 ms
4,380 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
#define REP(i,n) for(int i=0,i##_len=int(n);i<i##_len;++i)
#define rep(i,a,b) for(int i=int(a);i<int(b);++i)
#define All(x) (x).begin(),(x).end()
#define rAll(x) (x).rbegin(),(x).rend()
using namespace std;
using ll = long long;

int main(){
    int T;cin>>T;
    REP(q,T){
        int A,B,C;
        cin>>A>>B>>C;
        if(A>C) swap(A,C);
        if((C-B)*(B-A)<0) cout<<0<<endl;
        else if(A==1){
            if(B<=2) cout<<-1<<endl;
            else if(C==1) cout<<-1<<endl;
            else cout<<max(C-B+1,0)<<endl;
        }
        else if(B==1){
            if(A+C<=4) cout<<-1<<endl;
            else if(A==C) cout<<1<<endl;
            else cout<<0<<endl;
        }
        else if(A==B){
            if(A==C){
                if(A==2) cout<<-1<<endl;
                else cout<<3<<endl;
            }
            else{
                cout<<1<<endl;
            }
        }
        else if(B==C){
            if(A+1==C) cout<<2<<endl;
            else cout<<1<<endl;
        }
        else if(A+1==B){
            cout<<2<<endl;
        }
        else cout<<min(B-A+1,C-B+1)<<endl;
    }
}
0