摘要:
A. 4070. 异或 题目链接:https://www.acwing.com/problem/content/4073/ 题目大意:略。 解题思路:简单模拟。 示例程序: #include <bits/stdc++.h> using namespace std; int n, a[11], res 阅读全文
摘要:
A. 4003. 完全平方数 题目链接:https://www.acwing.com/problem/content/4006/ 题目大意:求 \(n\) 个数中最大的非完全平方数。 解题思路:循环一遍即可。 示例程序: #include <bits/stdc++.h> using namespac 阅读全文