题解 3209: 蓝桥杯2024年第十五届省赛真题-好数

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

to_string的大作用

摘要:参考代码:#include<bits/stdc++.h> using namespace std; #define int long long bool haoshu(int i) { s……

最容易想到的,两个for循环

摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h> using namespace std; int main() {     int n,ans=0,flag=0;……

单纯模拟我写详细点,方便新人观看

摘要:解题思路:主要看数据量,不是很大的都考虑先模拟。(求赞!)注意事项:看清题,是奇数还是偶数分清楚,今年考的时候就看错了,还好改了参考代码:#include<iostream>using namespa……

模拟题暴力题

摘要:``` #include #include #define int long long #define N 10100 using namespace std; bool check(in……