上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 23 下一页
摘要: 比赛链接:https://codeforces.com/contest/1354 A - Alarm Clock 题意 一个人要睡够 $a$ 分钟,一开始睡 $b$ 分钟后闹钟响铃,之后每次设置 $c$ 分钟后响铃,设置好后需要 $d$ 分钟入睡。 题解 首先判断能不能一开始就睡足 $a$ 分钟,如 阅读全文
posted @ 2020-05-18 16:00 Kanoon 阅读(207) 评论(0) 推荐(0) 编辑
摘要: 比赛链接:https://atcoder.jp/contests/abc168/tasks A - ∴ (Therefore) 题意 给出一个由数字组成的字符串 $s$,要求如下: 如果 $s$ 以 2,4,5,7,9 结尾,输出 "hon" 如果 $s$ 以 0,1,6,8 结尾,输出 "pon" 阅读全文
posted @ 2020-05-17 22:00 Kanoon 阅读(345) 评论(0) 推荐(1) 编辑
摘要: 比赛链接:https://codeforces.com/contest/1355 A - Sequence with Digits 题意 $a_{n+1} = a_n + minDigit(a_n) * maxDigit(a_n)$,给出 $a_1$,求 $a_k$。 题解 一直在想 $k$ 这个范 阅读全文
posted @ 2020-05-16 23:20 Kanoon 阅读(189) 评论(0) 推荐(0) 编辑
摘要: 比赛链接:https://codeforces.com/contest/1353 A - Most Unstable Array 题意 构造大小为 $n$,和为 $m$ 的非负数组 $a$,使得相邻元素之差的绝对值之和最大。 题解 稍加推导发现:将 $m$ 拆分和单独用 $m$ 结果是一样的,所以可 阅读全文
posted @ 2020-05-15 00:40 Kanoon 阅读(215) 评论(3) 推荐(1) 编辑
摘要: 比赛链接:https://codeforces.com/contest/1350 A - Orac and Factors 题意 记 $f(n)$ 为 $n$ 的最小非 $1$ 因子,输出执行 $k$ 次 $n = n + f(n)$ 的结果。 题解 $n$ 为偶数,最小非 $1$ 因子恒为 $2$ 阅读全文
posted @ 2020-05-13 20:00 Kanoon 阅读(141) 评论(0) 推荐(0) 编辑
摘要: 比赛链接:https://atcoder.jp/contests/abc167/tasks A - Registration 题意 字符串 t 比字符串 s 长 1,除此外其余部分是否与 s 相同。 代码 #include <bits/stdc++.h> using namespace std; i 阅读全文
posted @ 2020-05-10 22:30 Kanoon 阅读(358) 评论(6) 推荐(1) 编辑
摘要: 比赛链接:https://codeforces.com/contest/1352 A - Sum of Round Numbers 题意 将一个十进制数的每一个非零位分离出来。 代码 #include <bits/stdc++.h> using namespace std; void solve() 阅读全文
posted @ 2020-05-10 08:51 Kanoon 阅读(262) 评论(0) 推荐(2) 编辑
摘要: 比赛链接:https://codeforces.com/contest/1351 A - A+B (Trial Problem) #include <bits/stdc++.h> using namespace std; void solve() { int a, b; cin >> a >> b; 阅读全文
posted @ 2020-05-08 00:35 Kanoon 阅读(182) 评论(2) 推荐(2) 编辑
摘要: 比赛链接:https://codeforces.com/contest/1345 A - Puzzle Pieces 题意 能否用 3 凸 1 凹的拼图拼成 n x m 的图块。 题解 观察发现只可以拼成单独的一行(列)或两行两列。 代码 #include <bits/stdc++.h> using 阅读全文
posted @ 2020-05-07 01:40 Kanoon 阅读(363) 评论(1) 推荐(2) 编辑
摘要: 比赛链接:https://atcoder.jp/contests/abc166/tasks A - A?C 题意 AtCoder 会轮流举行 ABC,ARC 两种类型的比赛,已知上一次举行的比赛类型,问这一次会举行哪一种比赛。 代码 #include <bits/stdc++.h> using na 阅读全文
posted @ 2020-05-03 22:00 Kanoon 阅读(255) 评论(4) 推荐(2) 编辑
上一页 1 ··· 13 14 15 16 17 18 19 20 21 ··· 23 下一页