木门虫子
木门虫子
全部文章
分类
归档
标签
去牛客网
登录
/
注册
木门虫子的博客
全部文章
(共5篇)
题解 | 纪年
#include <stdio.h> int main() { long long year; long long n=1000; int tian_bushu,di_bushu,tian,di; while(scanf("%lld"...
2026-05-15
0
10
题解 | 反转字符串
/** * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可 * * 反转字符串 * @param str string字符串 * @return string字符串 */ #include <stdlib.h> char* solve(char* ...
2026-05-15
0
17
题解 | 换个角度思考
#include <stdio.h> int main() { int count=0; int l,r,k,n,m; int arr[100000]={0}; scanf("%d %d",&n,&m); fo...
2026-05-15
0
12
题解 | 换个角度思考
#include <stdio.h> int main() { int count=0; int l,r,x,k,n,m; int arr[100000]={0}; scanf("%d %d",&n,&m); ...
2026-05-15
0
10
题解 | 牛牛爱数学
#include <stdio.h> int main() { long long a, b,c; int t=0; scanf("%d",&t); for(int i = 0;i<t;i++) { sc...
2026-05-15
0
12