蓝桥杯2024年第十五届省赛真题-数字诗意,纯暴力!!! 摘要:解题思路: 排除2的n次幂就行了注意事项:参考代码:#include"bits/stdc++.h" using namespace std; // 定义一个长整型数组,用于存储…… 题解列表 2024年11月27日 1 点赞 0 评论 416 浏览 评分:0.0
3221: 蓝桥杯2024年第十五届省赛真题-数字诗意 摘要:解题思路:注意事项:参考代码:n = int(input().strip())l = list(map(int,input().strip().split()))c = 0for i in l: …… 题解列表 2024年08月11日 0 点赞 0 评论 580 浏览 评分:2.0
一行代码解决 摘要:print(len([i for i in list(map(int, input().split())) if i & (i - 1) == 0]) if input() else 0)…… 题解列表 2024年07月14日 2 点赞 2 评论 785 浏览 评分:9.0
数字诗意-找规律 摘要:解题思路:注意事项:参考代码:import mathn=int(input())nums = list(map(int,input().split()))ans = 0for i in nums: …… 题解列表 2024年05月06日 0 点赞 0 评论 524 浏览 评分:8.0
蓝桥杯2024年第十五届省赛真题-数字诗意 最优雅写法 摘要:```cpp #include #define int long long using namespace std; signed main() { int n = 1, m, …… 题解列表 2024年04月23日 1 点赞 3 评论 901 浏览 评分:8.9
数字诗意 - 找规律 摘要:#### 解题思路 手写 / 暴力打一个小表,下划线 `_` 表示无法表出的数字: ```text _ _ 3 _ 5 6 7 _ 9 10 11 12 13 14…… 题解列表 2024年04月18日 0 点赞 0 评论 1002 浏览 评分:8.9
数字诗意(找规律) 摘要:解题思路:有诗意的数注意事项:参考代码:#include<iostream>#include<cstring>#include<algorithm>using namespace std;typede…… 题解列表 2024年04月16日 0 点赞 0 评论 594 浏览 评分:4.7