結果

問題 No.966 引き算をして門松列(その1)
ユーザー konchanksu
提出日時 2020-04-21 00:10:37
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
WA  
実行時間 -
コード長 575 bytes
コンパイル時間 593 ms
コンパイル使用メモリ 64,144 KB
実行使用メモリ 6,820 KB
最終ジャッジ日時 2024-10-06 09:37:30
合計ジャッジ時間 1,365 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 1 WA * 1
other WA * 5
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
using namespace std;

int t, i, j, k, ans;
int main(){
    cin >> t;
    long long a[t], b[t], c[t];
    for(i = 0; i < t; i++) cin >> a[i] >> b[i] >> c[i];
    for(i = 0; i < t; i++){
        ans = 0;
        if(a[i] == c[i]) {ans += 1; a[i] -= 1;}
        if(a[i] > c[i]) {j = a[i]; a[i] = c[i]; c[i] = j;}
        if(a[i] <= b[i] && c[i] >= b[i]) {
             if(b[i] <= 2) ans = -1;
             else if(b[i] - a[i] == 1) ans += c[i] - a[i] + 1;
             else ans += c[i] - b[i] + 1;
        }
        cout << ans << endl;
    }
    return 0;
}
0