結果

問題 No.966 引き算をして門松列(その1)
ユーザー konchanksukonchanksu
提出日時 2020-04-21 00:13:11
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 604 bytes
コンパイル時間 579 ms
コンパイル使用メモリ 66,672 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-04-16 01:05:21
合計ジャッジ時間 1,155 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

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

ソースコード

diff #

#include <iostream>
#include <algorithm>
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 += 2;
             else ans += min(c[i] - b[i] + 1, b[i] - a[i] + 1);
        }
        cout << ans << endl;
    }
    return 0;
}
0