摘要: A 题意 给你\(A\)和\(B\),输出\(pow(A,B)+pow(B,A)\) #include<bits/stdc++.h> using namespace std; typedef long long ll; #define len(x) ((int)((x).size())) #defi 阅读全文
posted @ 2023-09-17 16:58 liuguanyi 阅读(52) 评论(0) 推荐(0)
摘要: [**A**](https://atcoder.jp/contests/abc310/tasks/abc310_a) ## 题意 给你$n,p,q$ 给你一个$n$长度的数组$D$ ,返回$\min(D_i+q,p)$ ~~~C++ #include using namespace std; typ 阅读全文
posted @ 2023-07-16 17:11 liuguanyi 阅读(86) 评论(0) 推荐(0)