2021年9月2日

1053 住房空置率 (20 point(s))

摘要: #include <bits/stdc++.h> using namespace std; int main() { // 空置率 用电量 连续 变化规律 // 读取 住房套数 低电量阈值 观察期阈值 double e; int n, D, pos = 0, space = 0; cin >> n 阅读全文

posted @ 2021-09-02 21:39 Atl212 阅读(34) 评论(0) 推荐(0)

1052 卖个萌 (20 point(s))

摘要: // 未精简代码 #include <bits/stdc++.h> using namespace std; int main() { // 给出符号集合 按要求输出 // []内为符号 每个集合至少一个符号 ? 左手 // 集合不超过10 个 符号不超过4个字符 string h, e, m, t 阅读全文

posted @ 2021-09-02 20:46 Atl212 阅读(41) 评论(0) 推荐(0)

1051 复数乘法 (15 point(s))

摘要: #include <bits/stdc++.h> using namespace std; int main() { double R1, P1, R2, P2, A, B; cin >> R1 >> P1 >> R2 >> P2; A = R1 * R2 * (cos(P1) * cos(P2) 阅读全文

posted @ 2021-09-02 15:57 Atl212 阅读(43) 评论(0) 推荐(0)

1050 螺旋矩阵 (25 point(s))(未AC错误代码,仅错误思路记录)

摘要: #include <bits/stdc++.h> using namespace std; int main() { int N, m, n; set<int> num; cin >> N; // 待填充序列 for(int i = 0; i < N; i++){ int tmp; cin >> t 阅读全文

posted @ 2021-09-02 11:52 Atl212 阅读(58) 评论(0) 推荐(0)

导航