結果
問題 | No.2535 多重同値 |
ユーザー | tama04 |
提出日時 | 2023-11-10 22:20:21 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,187 bytes |
コンパイル時間 | 1,743 ms |
コンパイル使用メモリ | 174,584 KB |
実行使用メモリ | 11,424 KB |
最終ジャッジ日時 | 2024-09-26 01:45:46 |
合計ジャッジ時間 | 5,616 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,752 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 2 ms
5,376 KB |
testcase_03 | AC | 2 ms
5,376 KB |
testcase_04 | WA | - |
testcase_05 | AC | 2 ms
5,376 KB |
testcase_06 | AC | 2 ms
5,376 KB |
testcase_07 | AC | 2 ms
5,376 KB |
testcase_08 | AC | 2 ms
5,376 KB |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | TLE | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef long long ll; typedef long double ld; template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return true; } else { return false; } } template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return true; } else { return false; } } #define rep(i, s, n) for(int i = (s); i < n; i++) #define reps(i, s, n) for(int i = (s); i <= n; i++) #define rrep(i, n, s) for(int i = n; i >= (s); i--) #define all(x) (x).begin(), (x).end() #define print(V) for (int z = 0; z < (V).size(); z++) { cout << V[z] << " "; } cout << endl; #define MOD 998244353 #define MOD2 1000000007 #define INF 1LL << 60 #define PI acos(-1) vector<bool> p; bool solve(int l, int r) { if (l == r) { return p[l]; } return p[l] & solve(l + 1, r); } int main(void) { int n; cin >> n; string s; p.resize(n + 1); rep(i, 0, n) { cin >> s; if (s == "Yes") { p[i + 1] = true; } else { p[i + 1] = false; } } vector<bool> ans; reps(i, 1, n) { int l = 1, r = i; ans.push_back(solve(l, r)); } for (bool res : ans) { if (res) { cout << "Yes" << endl; } else { cout << "No" << endl; } } return 0; }