题解 3221: 蓝桥杯2024年第十五届省赛真题-数字诗意

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

筛选

数字诗意(找规律)

摘要:解题思路:有诗意的数注意事项:参考代码:#include<iostream>#include<cstring>#include<algorithm>using namespace std;typede……

数字诗意 - 找规律

摘要:#### 解题思路 手写 / 暴力打一个小表,下划线 `_` 表示无法表出的数字: ```text _ _ 3 _ 5 6 7 _ 9 10 11 12 13 14……

数字诗意-找规律

摘要:解题思路:注意事项:参考代码:import mathn=int(input())nums = list(map(int,input().split()))ans = 0for i in nums:  ……

一行代码解决

摘要:print(len([i for i in list(map(int, input().split())) if i & (i - 1) == 0]) if input() else 0)……