11 2017 档案

摘要:K-th Number Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 262144/262144 K (Java/Others)Total Submission(s): 518 Accepted Submission(s): 213 Pro 阅读全文
posted @ 2017-11-25 23:20 euzmin 阅读(224) 评论(0) 推荐(0)
摘要:Geometry Problem Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 262144/262144 K (Java/Others)Total Submission(s): 1722 Accepted Submission(s): 3 阅读全文
posted @ 2017-11-24 16:36 euzmin 阅读(254) 评论(0) 推荐(0)
摘要:A Simple Stone Game Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 262144/262144 K (Java/Others)Total Submission(s): 1247 Accepted Submission(s) 阅读全文
posted @ 2017-11-20 21:24 euzmin 阅读(363) 评论(0) 推荐(0)
摘要:时间限制:1000ms 单点时限:1000ms 内存限制:256MB 描述 There are many homeless cats in PKU campus. They are all happy because the students in the cat club of PKU take 阅读全文
posted @ 2017-11-19 17:50 euzmin 阅读(179) 评论(0) 推荐(0)
摘要:D. Palindrome Degree time limit per test 1 second memory limit per test 256 megabytes input standard input output standard output D. Palindrome Degree 阅读全文
posted @ 2017-11-17 00:08 euzmin 阅读(222) 评论(0) 推荐(0)
摘要:C. Line time limit per test 1 second memory limit per test 256 megabytes input standard input output standard output C. Line time limit per test 1 sec 阅读全文
posted @ 2017-11-12 20:13 euzmin 阅读(190) 评论(0) 推荐(0)
摘要:B. Memory Manager time limit per test 1 second memory limit per test 64 megabytes input standard input output standard output B. Memory Manager time l 阅读全文
posted @ 2017-11-12 18:16 euzmin 阅读(280) 评论(0) 推荐(0)
摘要:E. Exposition time limit per test 1.5 seconds memory limit per test 64 megabytes input standard input output standard output E. Exposition time limit 阅读全文
posted @ 2017-11-12 15:35 euzmin 阅读(288) 评论(0) 推荐(0)
摘要:1 int gcd(int a,int b) { 2 return b==0?a:gcd(b,a%b); 3 } 1 void gcd(int a, int b, int &d, int &x, int &y) 2 { 3 if(!b) { d = a; x = 1; y = 0; } 4 else 阅读全文
posted @ 2017-11-09 16:22 euzmin 阅读(129) 评论(0) 推荐(0)