上一页 1 ··· 18 19 20 21 22 23 24 25 26 ··· 36 下一页
摘要: L1-1 自动编程 #include <bits/stdc++.h> using namespace std; #define int long long int32_t main() { int n; cin >> n; printf("print(%d)\n" , n ); return 0; 阅读全文
posted @ 2023-04-10 21:33 PHarr 阅读(26) 评论(0) 推荐(0) 编辑
摘要: A. Coins #include <bits/stdc++.h> using namespace std; #define int long long int read() { int x = 0, f = 1, ch = getchar(); while ((ch < '0' || ch > ' 阅读全文
posted @ 2023-04-07 22:00 PHarr 阅读(242) 评论(5) 推荐(3) 编辑
摘要: A. Insert Digit 放在第一个比他小的数前面 #include <bits/stdc++.h> using namespace std; void solve() { int n, d; cin >> n >> d; string s; cin >> s; for (char i: s) 阅读全文
posted @ 2023-04-05 16:57 PHarr 阅读(49) 评论(0) 推荐(0) 编辑
摘要: A-小石的图形 #include<bits/stdc++.h> using namespace std; const double pi = 3.1415926; int32_t main() { double n , r; cin >> n; r = n / pi; printf("%.3lf" 阅读全文
posted @ 2023-04-05 15:43 PHarr 阅读(16) 评论(0) 推荐(0) 编辑
摘要: A. Garland 分类讨论 #include <bits/stdc++.h> using namespace std; void solve(){ string s; cin >> s; map<char,int> cnt; for( auto c : s ) cnt[c]++; if( cnt 阅读全文
posted @ 2023-04-03 19:40 PHarr 阅读(35) 评论(0) 推荐(0) 编辑
摘要: A - Good morning #include <bits/stdc++.h> using namespace std; int32_t main() { int a , b , c , d; int ta , ao; cin >> a >> b >> c >> d; ta = a * 60 * 阅读全文
posted @ 2023-03-29 22:34 PHarr 阅读(21) 评论(0) 推荐(0) 编辑
摘要: A - Probably English #include <bits/stdc++.h> using namespace std; int read() { int x = 0, f = 1, ch = getchar(); while ((ch < '0' || ch > '9') && ch 阅读全文
posted @ 2023-03-28 21:24 PHarr 阅读(120) 评论(0) 推荐(1) 编辑
摘要: Cow Bowling 简单 dp,f[i][j]到达第i行第j列的最大值 #include<iostream> #include <vector> #include <algorithm> using namespace std; #define int long long int read() 阅读全文
posted @ 2023-03-27 21:08 PHarr 阅读(10) 评论(0) 推荐(0) 编辑
摘要: L1-1 谢谢卡尔! print("谢谢卡尔!\\(>_<)/") L1-2 现在是,幻想时间! #include <bits/stdc++.h> using namespace std; int main(){ double a , b; cin >> a >> b; printf("%.3lf" 阅读全文
posted @ 2023-03-26 14:43 PHarr 阅读(58) 评论(0) 推荐(0) 编辑
摘要: A. Prepend and Append 如果两段字符不同就可以删掉,如果不能删了就是最初的字符串 #include <bits/stdc++.h> using namespace std; void solve() { int n; string s; cin >> n >> s; int l 阅读全文
posted @ 2023-03-21 21:00 PHarr 阅读(35) 评论(0) 推荐(0) 编辑
上一页 1 ··· 18 19 20 21 22 23 24 25 26 ··· 36 下一页