题解 2701 取模C语言 摘要:解题思路:注意事项:参考代码:#include <stdio.h> #include <stdlib.h> #include <math.h> #include <string.h> in…… 题解列表 2024年04月08日 1 点赞 0 评论 96 浏览 评分:0.0
蓝桥杯2022年第十三届决赛真题-取模(C/C++/Java组) 摘要:解题思路:简单暴力注意事项:用scanf能过,cin过不了参考代码:#include<iostream>#include<unordered_map>using namespace std;int t…… 题解列表 2023年06月01日 0 点赞 1 评论 277 浏览 评分:9.9
有一些中国剩余定理背景的数论题 摘要:解题思路:本质上就是判断是否n%i==i-1,1<=i<=m。注意事项:参考代码:#include<bits/stdc++.h>//时间复杂度O(T) using namespace std;int …… 题解列表 2023年05月12日 0 点赞 2 评论 278 浏览 评分:9.9
暴力破解-数组存储答案-取模-Java 摘要:解题思路: 暴力循环找到目标,主要是把握好每个变量的取值范围。输入t来接收要输入几组数字,然后我构建了一个t长度的字符数组用来存放字符答案。循环t次,每次传入一组数,并且每次传入后判断结果,将结果存放…… 题解列表 2023年04月04日 0 点赞 0 评论 176 浏览 评分:9.9
简单思路,附有注释,通俗易懂 摘要:```java //package 蓝桥杯2022年第十三届决赛真题; import java.util.Scanner; public class Main { private s…… 题解列表 2023年04月03日 0 点赞 0 评论 253 浏览 评分:0.0
一种可借鉴的麻烦方法 摘要:解题思路:注意事项:参考代码:#include <stdio.h>int main(){ int t, n, m, i, j, x, y; scanf("%d",&t); for(…… 题解列表 2023年04月01日 0 点赞 0 评论 187 浏览 评分:8.0
取模(C语言版本) 摘要: 话不多说直接上代码 #include int main() { int n,m,b; scanf("%d",&b); int i; int j; wh…… 题解列表 2023年03月29日 0 点赞 0 评论 595 浏览 评分:9.9
LikeWater - 2701: 蓝桥杯真题-取模(请问有谁知道看错题的痛!一直看成n mod x == m mod y 隔这儿一只写。。。) 摘要:####这是题目:给定 n, m ,问是否存在两个不同的数 x, y 使得 1 ≤ x < y ≤ m 且 n mod x = n mod y 。 ***最后的地方我看成了n mod x = m m…… 题解列表 2023年03月24日 0 点赞 0 评论 392 浏览 评分:6.0
编写题解 2701: 蓝桥杯2022年第十三届决赛真题-取模 摘要:解题思路:使用经典的暴力破解注意事项:不超时就行参考代码:import java.util.Scanner;public class Main { public static void main(St…… 题解列表 2023年03月23日 0 点赞 0 评论 192 浏览 评分:0.0
2701: 蓝桥杯2022年第十三届决赛真题-取模(C/C++/Java组)(20行!!!) 摘要: import java.util.*; public class 取模 { public static void main(String[] args) { Scanner sc = …… 题解列表 2023年03月06日 0 点赞 0 评论 803 浏览 评分:9.9