上一页 1 ··· 19 20 21 22 23 24 25 26 27 ··· 36 下一页
摘要: A. Plus or Minus #include <bits/stdc++.h> using namespace std; int32_t main() { ios::sync_with_stdio(false) , cin.tie(nullptr) , cout.tie(nullptr); in 阅读全文
posted @ 2023-03-20 20:18 PHarr 阅读(81) 评论(0) 推荐(0) 编辑
摘要: A - Swap Odd and Even #include<bits/stdc++.h> using namespace std; int32_t main(){ string s; cin >> s; for( int i = 0 ; i + 1 < s.size() ; i += 2 ) sw 阅读全文
posted @ 2023-03-19 21:11 PHarr 阅读(15) 评论(0) 推荐(0) 编辑
摘要: A. Hall of Fame 统计一下向左照的最靠右和向右照的最靠左的看是否可以把所有的位置都覆盖 #include <bits/stdc++.h> using namespace std; int read(){ int x = 0 , ch = getchar(); while( ch < ' 阅读全文
posted @ 2023-03-15 21:55 PHarr 阅读(31) 评论(0) 推荐(0) 编辑
摘要: A - Two Rectangles 比大小 #include<bits/stdc++.h> using namespace std; int32_t main(){ int a , b , c , d ; cin >> a >> b >> c >> d; cout << max( a * b , 阅读全文
posted @ 2023-03-09 16:58 PHarr 阅读(17) 评论(0) 推荐(0) 编辑
摘要: A - 生活大爆炸版石头剪刀布 B - 联合权值 C - 飞扬的小鸟 D - 无线网络发射器选址 E - 寻找道路 F - 廊桥分配 G - 格雷码 A - 生活大爆炸版石头剪刀布 这套题就是注意处理一下输赢关系就好了 #include <bits/stdc++.h> using namespace 阅读全文
posted @ 2023-03-07 22:53 PHarr 阅读(17) 评论(0) 推荐(0) 编辑
摘要: A - CAPS LOCK #include <bits/stdc++.h> using namespace std; int32_t main() { string s; cin >> s; for( auto i : s ) cout << char(i - 'a' + 'A'); return 阅读全文
posted @ 2023-03-05 20:49 PHarr 阅读(41) 评论(0) 推荐(0) 编辑
摘要: A. Printing Papers 二分一下就好了 #include<bits/stdc++.h> using namespace std; int read() { int x = 0, f = 1, ch = getchar(); while ((ch < '0' || ch > '9') & 阅读全文
posted @ 2023-03-05 15:38 PHarr 阅读(88) 评论(0) 推荐(0) 编辑
摘要: A. 解开束缚缠丝Ⅱ 回文串中至多出现一种字母是奇数个。 #include<bits/stdc++.h> using namespace std; void solve(){ int n; cin >> n; map<char,int> st; int res = 0 , f = 0; for( c 阅读全文
posted @ 2023-02-17 23:31 PHarr 阅读(106) 评论(0) 推荐(0) 编辑
摘要: A. 班委竞选 签到题 #include <bits/stdc++.h> using namespace std; int32_t main() { int n , m ; cin >> n >> m; vector<int> a( m+1 , 0 ) , b( m+1 , 0 ); for( in 阅读全文
posted @ 2023-02-15 21:15 PHarr 阅读(33) 评论(0) 推荐(0) 编辑
摘要: A - flip #include <bits/stdc++.h> using namespace std; int32_t main() { ios::sync_with_stdio(false) , cin.tie(nullptr) , cout.tie(nullptr); string s; 阅读全文
posted @ 2023-02-14 23:23 PHarr 阅读(29) 评论(0) 推荐(0) 编辑
上一页 1 ··· 19 20 21 22 23 24 25 26 27 ··· 36 下一页