結果
問題 | No.2343 (l+r)/2 |
ユーザー | shobonvip |
提出日時 | 2023-06-10 03:07:58 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 943 bytes |
コンパイル時間 | 3,811 ms |
コンパイル使用メモリ | 264,548 KB |
実行使用メモリ | 5,376 KB |
最終ジャッジ日時 | 2024-06-10 16:41:13 |
合計ジャッジ時間 | 5,009 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 1 ms
5,248 KB |
testcase_01 | AC | 291 ms
5,248 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | AC | 13 ms
5,376 KB |
testcase_05 | AC | 7 ms
5,376 KB |
testcase_06 | AC | 5 ms
5,376 KB |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | AC | 13 ms
5,376 KB |
testcase_13 | AC | 9 ms
5,376 KB |
testcase_14 | WA | - |
ソースコード
#include<bits/stdc++.h> #include<atcoder/all> using namespace std; using namespace atcoder; typedef modint998244353 mint; typedef long long ll; void dfs(int n, vector<double> v){ if (n == 1){ if (abs(v[0] - 0.5) < 0.001) cout << v[0] << endl; return; } for (int i=0; i<n-1; i++){ vector<double> tmp; for (int j=0; j<i; j++){ tmp.push_back(v[j]); } tmp.push_back((v[i] + v[i+1]) / 2); for (int j=i+2; j<n; j++){ tmp.push_back(v[j]); } dfs(n-1, tmp); } } void solve(){ int n; cin >> n; vector<int> a(n); for (int i=0; i<n; i++){ cin >> a[i]; } int mode = 0; for (int i=0; i<n; i++){ mode |= 1 << a[i]; } if (mode != 3){ cout << "No\n"; return; } for (int i=0; i<n-1; i++){ if (a[i] == a[i+1]){ cout << "Yes\n"; return; } } if (n % 2 == 0){ cout << "Yes\n"; }else if (n <= 7){ cout << "No\n"; }else{ cout << "Yes\n"; } } int main(){ int t; cin >> t; while(t--) solve(); }