摘要: 例题 P5318 【深基18.例3】查找文献 - 洛谷 | 计算机科学教育新生态 (luogu.com.cn) #include<bits/stdc++.h> #include<vector> #include<queue> #define rep(i,a,b) for (int i=a; i<=b 阅读全文
posted @ 2023-08-24 15:20 TC2105LJY 阅读(5) 评论(0) 推荐(0) 编辑
摘要: 自我学习1.0 *自带使用说明 下载地址:https://files.cnblogs.com/files/blogs/777644/%E8%87%AA%E6%88%91%E5%AD%A6%E4%B9%A0.zip?t=1683299920&download=true 阅读全文
posted @ 2023-05-05 23:20 TC2105LJY 阅读(10) 评论(0) 推荐(0) 编辑
摘要: 因式分解模拟器3.0 *增加了错题本功能 *增加了查看我的错题 *增加了重置错题本功能 下载地址: https://files.cnblogs.com/files/blogs/777644/%E5%9B%A0%E5%BC%8F%E5%88%86%E8%A7%A3%E6%A8%A1%E6%8B%9F% 阅读全文
posted @ 2023-04-24 22:55 TC2105LJY 阅读(49) 评论(1) 推荐(0) 编辑
摘要: *270题 原题传送门:http://oj.tfls.net/p/270 题解: #include<bits/stdc++.h> using namespace std; int a,b,c,ans=0; int main(){ int n; cin>>n; for (int i=1; i<=n-2 阅读全文
posted @ 2022-12-07 17:55 TC2105LJY 阅读(250) 评论(0) 推荐(0) 编辑
摘要: *272题 原题传送门:http://oj.tfls.net/p/272 题解:(遍历,60分) #include<bits/stdc++.h> using namespace std; long long allday;//总天数 long long pas;//已经过去 long long mo 阅读全文
posted @ 2022-12-07 16:09 TC2105LJY 阅读(236) 评论(0) 推荐(0) 编辑
摘要: *266题 原题传送门:http://oj.tfls.net/p/266 题解: #include<bits/stdc++.h> using namespace std; int t;//高能数字 int sfch(int a){//是否有一位是高能数字,我用的递归,直到为零 if (a==0) r 阅读全文
posted @ 2022-12-07 10:20 TC2105LJY 阅读(142) 评论(0) 推荐(0) 编辑
摘要: *271题 原题传送门:http://oj.tfls.net/p/271 题解: #include<bits/stdc++.h> using namespace std; int cf(int a,int b){//a的b次方 int c=a; for (int i=1; i<b; i++)//乘 阅读全文
posted @ 2022-12-07 10:10 TC2105LJY 阅读(61) 评论(0) 推荐(0) 编辑
摘要: *267题 原题传送门:http://oj.tfls.net/p/267 题解: #include<bits/stdc++.h> using namespace std; int c,m; int ans[30]; int sz[1005] = {6, 2, 5, 5, 4, 5, 6, 3, 7, 阅读全文
posted @ 2022-12-03 23:39 TC2105LJY 阅读(129) 评论(0) 推荐(0) 编辑