17寒假学习
非人类浩
这个作者很懒,什么都没留下…
展开
-
POJ - 2386 Lake Counting
Lake Counting Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 39457 Accepted: 19558 Description Due to recent rains, water has pooled in various places in Farmer John’s fiel原创 2018-01-24 13:45:23 · 213 阅读 · 0 评论 -
B - Burning Midnight Oil CodeForces - 165B
One day a highly important task was commissioned to Vasya — writing a program in a night. The program consists of n lines of code. Vasya is already exhausted, so he works like that: first he writes v原创 2018-02-01 19:42:46 · 243 阅读 · 0 评论 -
C - Another Problem on Strings CodeForces - 165C
A string is binary, if it consists only of characters “0” and “1”. String v is a substring of string w if it has a non-zero length and can be read starting from some position in string w. For example原创 2018-02-03 16:00:04 · 220 阅读 · 0 评论 -
HDU - 1236
今天的上机考试虽然有实时的Ranklist,但上面的排名只是根据完成的题数排序,没有考虑 每题的分值,所以并不是最后的排名。给定录取分数线,请你写程序找出最后通过分数线的 考生,并将他们的成绩按降序打印。 Input 测试输入包含若干场考试的信息。每场考试信息的第1行给出考生人数N ( 0 名考生的准考证号(长度不超过20的字符串)、该生解决的题目总数m、以及这m道题的题号原创 2018-01-27 16:50:26 · 272 阅读 · 0 评论 -
模拟时钟
mooc视频学习时,照着视频手打,非原创 from turtle import * from datetime import * ##绘制表盘 def SetupClock(radius): #建立标的外框 reset() pensize(7) for i in range(60): Skip(radius) if i%5==0:原创 2018-02-05 14:22:03 · 793 阅读 · 2 评论 -
7-1 四平方和(qdulq)(暴力枚举+小技巧)
四平方和定理,又称为拉格朗日定理: 每个正整数都可以表示为至多4个正整数的平方和。 如果把0包括进去,就正好可以表示为4个数的平方和。 比如: 5 = 0^2 + 0^2 + 1^2 + 2^2 7 = 1^2 + 1^2 + 1^2 + 2^2 (^符号表示乘方的意思) 对于一个给定的正整数,可能存在多种平方和的表示法。 要求你对4个数排序: 0 并对所有的可能表示法按 a原创 2018-02-06 14:11:27 · 306 阅读 · 0 评论