結果

問題 No.2518 Adjacent Larger
ユーザー fky_fky_
提出日時 2023-10-25 12:16:14
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 936 bytes
コンパイル時間 1,985 ms
コンパイル使用メモリ 203,036 KB
実行使用メモリ 4,348 KB
最終ジャッジ日時 2023-10-25 16:29:47
合計ジャッジ時間 3,168 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 WA -
testcase_04 WA -
testcase_05 WA -
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 AC 14 ms
4,348 KB
testcase_17 AC 8 ms
4,348 KB
testcase_18 AC 9 ms
4,348 KB
testcase_19 AC 7 ms
4,348 KB
testcase_20 AC 10 ms
4,348 KB
testcase_21 AC 14 ms
4,348 KB
testcase_22 AC 13 ms
4,348 KB
testcase_23 AC 14 ms
4,348 KB
testcase_24 AC 12 ms
4,348 KB
testcase_25 AC 13 ms
4,348 KB
testcase_26 AC 13 ms
4,348 KB
testcase_27 WA -
testcase_28 AC 12 ms
4,348 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

typedef long long ll;
#define FOR(i, a, b) for (int i = a; i < (b); i++)
#define RFOR(i, a, b) for (int i = a; i >= (b); i--)
#define range(a) a.begin(), a.end()
#define endl "\n"
#define Yes() cout << "Yes" << endl
#define No() cout << "No" << endl
#define pb push_back
int dx[4] = {-1, 0, 1, 0};
int dy[4] = {0, -1, 0, 1};
using P = pair<int, int>;
const long long INFL = LLONG_MAX;
const int INFI = INT_MAX;
template<class T>bool chmin(T &a, const T &b) { if(a > b) {a = b; return true; } else return false; }
template<class T>bool chmax(T &a, const T &b) { if(a < b) {a = b; return true; } else return false; }

int main(void){
	ios::sync_with_stdio(0);
	cin.tie(0);
	int T;
	cin >> T;
	while(T--){
		int M;
		cin >> M;
		vector<int> A(M);
		FOR(i, 0, M) cin >> A[i];
		if(accumulate(range(A), 0) != M || *max_element(range(A)) == 1){
			No();
		}else{
			Yes();
		}
	}

	return 0;
}

0