摘要: 简单的 git 入门 阅读全文
posted @ 2022-06-27 14:55 PHarr 阅读(50) 评论(0) 推荐(0) 编辑
摘要: A - 2^N 签到 #include<bits/stdc++.h> using namespace std; int main() { int n; cin >> n; cout << ( 1 << n ) << endl; } B - Batters 按照要求模拟一下 n = int(input 阅读全文
posted @ 2022-06-25 13:17 PHarr 阅读(41) 评论(0) 推荐(0) 编辑
摘要: # 基础语法 ## Java程序语句执行的顺序 Java包括4种基本控制结构:顺序结构、选择结构、循环结构、异常处理逻辑结构 (如果是三个空就是:顺序、选择、循环) ## 权限修饰符 public:类内部、本包、子类、外部包 protected:类内部、本包、子类、外部包 default:类内部、本 阅读全文
posted @ 2022-06-22 16:53 PHarr 阅读(60) 评论(0) 推荐(0) 编辑
摘要: A - Move Right 给一个四位的二进制,输出右移一位的结果 #include <bits/stdc++.h> using namespace std; int n; string s ; int main() { cin >> s; cout << '0'; for( int i = 0 阅读全文
posted @ 2022-05-24 16:55 PHarr 阅读(30) 评论(0) 推荐(0) 编辑
摘要: A. Lucky? 给n 个长度6 的数,问前三位和后三位中0 的数量是否相同 #include <bits/stdc++.h> using namespace std; string s; int main(){ int t = read(); while( t -- ){ cin >> s; i 阅读全文
posted @ 2022-05-24 15:37 PHarr 阅读(96) 评论(0) 推荐(0) 编辑
摘要: # 理解 Python中的数据类型 在 Python 中变量的数据类型是动态推断的,并且可以自动进行转换 ```python x = 4 x = "four" ``` 因为Python 是由 C 编写的所以 Python 的整形实际上是 C 中的一个结构体,通过储存一些额外的信息 Python 可以 阅读全文
posted @ 2022-05-22 15:44 PHarr 阅读(40) 评论(0) 推荐(0) 编辑
摘要: 初赛 数圈圈 转化成 16 进制统计一下 #include <bits/stdc++.h> #define ll long long using namespace std; const int N = 23; int n , m ; inline int read() { int x = 0 , 阅读全文
posted @ 2022-04-11 20:56 PHarr 阅读(30) 评论(0) 推荐(0) 编辑
摘要: 递推与递归 AcWing 92. 递归实现指数型枚举 #include<bits/stdc++.h> #define ll long long using namespace std; const int N = 20; int n; bool vis[N]; inline int read() { 阅读全文
posted @ 2022-04-10 13:06 PHarr 阅读(17) 评论(0) 推荐(0) 编辑
摘要: 杂项 错误票据【第四届】【省赛】 #include <bits/stdc++.h> using namespace std; int n; vector<int> a; int main() { int n , m ; string s; cin >> n; getchar(); for( int 阅读全文
posted @ 2022-04-10 13:05 PHarr 阅读(10) 评论(0) 推荐(0) 编辑
摘要: 比赛链接 比例简化 这道题看似很复杂但是因为数据范围很少,所以可以直接枚举分子分母按照题目要求选择即可 #include <bits/stdc++.h> #define ll long long using namespace std; const int N = 1100; double a , 阅读全文
posted @ 2022-04-03 13:33 PHarr 阅读(42) 评论(0) 推荐(0) 编辑