結果
問題 | No.966 引き算をして門松列(その1) |
ユーザー | fine |
提出日時 | 2020-01-13 21:00:19 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,533 bytes |
コンパイル時間 | 1,590 ms |
コンパイル使用メモリ | 168,660 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-02 03:43:39 |
合計ジャッジ時間 | 2,244 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 1 ms
5,376 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 5 ms
5,376 KB |
testcase_06 | AC | 6 ms
5,376 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; using ll = long long; int main() { cin.tie(nullptr); ios::sync_with_stdio(false); int t; cin >> t; for (int lo = 0; lo < t; ++lo) { vector<ll> a(3); for (int i = 0; i < 3; ++i) { cin >> a[i]; } if (a[0] == a[1] && a[1] == a[2]) { if (a[1] <= 2) { cout << -1 << "\n"; } else { cout << 3 << "\n"; } continue; } if (a[2] < a[0]) swap(a[0], a[2]); ll cnt = 0; if (a[0] == a[2]) { a[0]--; cnt++; } if (a[0] == 0) { cout << -1 << "\n"; continue; } if (a[1] == a[0]) { if (a[1] <= 1) cout << -1 << "\n"; else cout << cnt + 1 << "\n"; continue; } if (a[2] == a[1]) { if (a[2] <= 1) { cout << -1 << "\n"; continue; } else { a[2]--; cnt++; } } if (a[0] == a[2]) { a[0]--; cnt++; } if (a[0] == 0) { cout << -1 << "\n"; continue; } if (a[2] < a[1] || a[0] > a[1]) { cout << cnt << "\n"; } else if (a[0] == 1) { cout << -1 << "\n"; } else { cout << cnt + min(a[1] - a[0] + 1, a[2] - a[1] + 1) << "\n"; } } return 0; }