Loading

摘要: A. Yet Another Two Integers Problem 大意: 给出两个数a和b,对于a每次可以加上或者减去1到10里的任意一个数 问多少次操作后可以得到b 思路: 直接算abs(a-b)/10向上取整即可 #include <bits/stdc++.h> using namespa 阅读全文
posted @ 2021-01-20 00:34 dyhaohaoxuexi 阅读(44) 评论(0) 推荐(0) 编辑