摘要: 比赛链接:https://atcoder.jp/contests/abc044 A - Tak and Hotels (ABC Edit) 题目大意: 住 \(N\) 天旅馆,前 \(K\) 天每晚 \(X\) 元,接下来每晚 \(Y\) 元。问:一共花多少钱? 解题思路: 直接一个if判断即可。 阅读全文
posted @ 2021-03-02 21:02 quanjun 阅读(123) 评论(0) 推荐(0) 编辑
摘要: 比赛链接:https://atcoder.jp/contests/abc043 A - Children and Candies (ABC Edit) 题目大意: 求 \(1+2+\ldots+n\)。 答案:\(\frac{n \cdot (n+1)}{2}\)。 示例程序: #include < 阅读全文
posted @ 2021-03-02 17:04 quanjun 阅读(92) 评论(0) 推荐(0) 编辑
摘要: 比赛链接:https://atcoder.jp/contests/abc042 A - Iroha and Haiku (ABC Edition) 题目大意: 给你三个数,判断能否组成一个 \(5,7,5\) 的排列。 示例程序: #include <bits/stdc++.h> using nam 阅读全文
posted @ 2021-03-02 14:04 quanjun 阅读(102) 评论(0) 推荐(0) 编辑