摘要:
A - First ABC 2 解题思路 签到 Code #include <bits/stdc++.h> using namespace std; typedef long long LL; void solve() { int n; cin >> n; string s; cin >> s; i 阅读全文
摘要:
A. First Grid 解题思路 考虑两个对角线是不是存在一条都是 #,另一条都是 . ,如果是则一定是 'No',否则就是 'Yes'。 Code #include <bits/stdc++.h> using namespace std; typedef long long LL; int m 阅读全文
摘要:
A - Weather Forecast 解题思路 签到。 Code #include <bits/stdc++.h> using namespace std; int main() { ios::sync_with_stdio(false), cin.tie(nullptr); int n; st 阅读全文
摘要:
A. Signed Difficulty 解题思路 签到 Code #include <bits/stdc++.h> using namespace std; typedef long long LL; typedef pair<int, int> PII; int main() { ios::sy 阅读全文