蓝桥杯2019年第十届真题-特别数的和-题解(Python代码) 摘要:解题思路:注意事项:参考代码:n=int(input())str1='2019'num=0for i in range(1,n+1): for j in str1: …… 题解列表 2021年02月08日 0 点赞 0 评论 185 浏览 评分:0.0
纯代码无注释 摘要:```cpp #include #include using namespace std; bool judge(int k) { string str=to_string(k);//数…… 题解列表 2021年03月31日 0 点赞 0 评论 285 浏览 评分:0.0
蓝桥杯][2019年第十届真题]特别数的和-题解(Python代码) 摘要:解题思路:运用str() 和 eval()注意事项:str.find()返回的是-1或下标参考代码:n=int(input()) sum=0 for i in range(1,n+1): …… 题解列表 2021年04月01日 0 点赞 0 评论 288 浏览 评分:9.9
思路清晰C语言代码 摘要:解题思路:首先,我们要先先判断出哪些数字中含有 2 ,0 ,1 ,9 ,我们可以设置一个函数fun来判断通过while 循环 ,把每一位数都给模出来,然后和 2 ,0 ,1, 9, 这四个数字进行比较…… 题解列表 2021年04月11日 0 点赞 0 评论 374 浏览 评分:9.9
菜鸡的题解006——特别数的和 摘要:没啥可说的了,这题也能当提高题?参考代码:#include<iostream> #include<cstdio> #include<algorithm> #include<string> #i…… 题解列表 2021年04月15日 0 点赞 0 评论 202 浏览 评分:0.0
特别数的和-题解(Java代码) 摘要:解题思路:注意事项:参考代码: public static void main(String[] args) { Scanner sc = new Scanner(System.in); …… 题解列表 2021年12月23日 0 点赞 0 评论 266 浏览 评分:0.0
暴力出奇迹 摘要:解题思路:注意事项:参考代码:#include<iostream> using namespace std; int n; int sum; bool check(int n) { …… 题解列表 2022年01月19日 0 点赞 0 评论 316 浏览 评分:9.9
Benjam1n:蓝桥杯2019年第十届省赛真题-特别数的和(Java代码)(正则表达式) 摘要:解题思路:正则参考代码:public static void main(String[] args) { Scanner in = new Scanner(System.in); int N …… 题解列表 2022年01月26日 0 点赞 0 评论 199 浏览 评分:9.9
特别数的和-这真的是省赛题吗,怎么感觉这么假 摘要:解题思路:这真的是省赛题吗,怎么感觉像注意事项:参考代码:#include<stdio.h>int main(){ int n,i,j,mod=0,sum=0; scanf("%d",&n); fo…… 题解列表 2022年02月13日 0 点赞 0 评论 211 浏览 评分:0.0
暴力模拟!! 摘要:```cpp #include using namespace std; bool check(int k){ int isflag = 0; while(k){ …… 题解列表 2022年03月19日 0 点赞 0 评论 163 浏览 评分:0.0