摘要: <?php echo 'hello'."\n"." world!"."good night!";//2016.09.18 22:57?> 阅读全文
posted @ 2016-09-18 22:54 马丁黄瓜啊 阅读(195) 评论(0) 推荐(0) 编辑
摘要: <html> <head> </head> <body> <h1>hello world!</h1> </body> </html> 阅读全文
posted @ 2016-09-18 22:53 马丁黄瓜啊 阅读(266) 评论(0) 推荐(0) 编辑
摘要: 仅仅给出部分关键代码: HTML form code: JavaFormTest.java 处理程序doPost 部分: 阅读全文
posted @ 2016-09-18 22:48 马丁黄瓜啊 阅读(17891) 评论(0) 推荐(0) 编辑
摘要: 题目链接:http://codeforces.com/problemset/problem/712/B 题目大意: 给出一个字符串(由'U''D''L''R'),分别是向上、向下、向左、向右一个单位,问修改若干字符,可以回到原点。回不到原点输出 -1,可以则输出最少修改的步数。 解题思路: 如果是奇 阅读全文
posted @ 2016-09-18 22:39 马丁黄瓜啊 阅读(233) 评论(0) 推荐(0) 编辑
摘要: 题目链接:http://codeforces.com/problemset/problem/712/A 题目大意: 给你一个数字系列,求其满足条件的一个序列。 条件为: ai = bi - bi + 1 + bi + 2 - bi + 3.... 解题思路: 可先从后向前推,b[n]=a[n](1- 阅读全文
posted @ 2016-09-18 21:37 马丁黄瓜啊 阅读(268) 评论(0) 推荐(0) 编辑