
杭电
wjk20120522
这个作者很懒,什么都没留下…
展开
-
[杭电]Let the Balloon Rise
题目:http://acm.hdu.edu.cn/showproblem.php?pid=1004思路:原创 2014-05-04 14:48:28 · 887 阅读 · 0 评论 -
[杭电]A + B Again
题目:http://acm.hdu.edu.cn/showproblem.php?pid=2057思路:有两个注意点: (1)由于原创 2014-05-04 15:18:24 · 1007 阅读 · 0 评论 -
[杭电]Max Sum
题目:http://acm.hdu.edu.cn/showproblem.php?pid=1003代码:#include #include using namespace std;int num[100005];int main(){ int T; cin >> T; int N; for (int i = 1; i <= T; i++) { cin >原创 2014-05-13 22:16:53 · 1288 阅读 · 0 评论 -
[杭电]Tick and Tick
题目:http://acm.hdu.edu.cn/showproblem.php?pid=1006思路:这题想了很久原创 2014-05-15 09:25:21 · 1115 阅读 · 0 评论 -
[杭电]Number Sequence
题目: http://acm.hdu.edu.cn/showproblem.php?pid=1005代码:#include #include using namespace std;int res[50];int main(){ int A, B, n; res[1] = 1; res[2] = 1; while (cin >> A >> B >> n) {原创 2014-05-14 16:57:10 · 780 阅读 · 0 评论 -
[杭电]Fibonacci Again
题目:http://acm.hdu.edu.cn/showproblem.php?pid=1021代码:原创 2014-06-29 23:18:35 · 767 阅读 · 0 评论