摘要:
A. Straight «A» time limit per test 1 second memory limit per test 256 megabytes input standard input output standard output Noora is a student of one 阅读全文
摘要:
粘贴两个特别简单的冒泡排序 2014: Scramble Sort Description In this problem you will be given a series of lists containing both words and numbers. The goal is to so 阅读全文
摘要:
A. Lucky Year time limit per test 1 second memory limit per test 256 megabytes input standard input output standard output A. Lucky Year time limit pe 阅读全文
摘要:
A. Buying A House time limit per test 2 seconds memory limit per test 256 megabytes input standard input output standard output A. Buying A House time 阅读全文
摘要:
这次的前三题挺简单的,可是我做的不快也不对。 A. Bank Robbery time limit per test 2 seconds memory limit per test 256 megabytes input standard input output standard output A 阅读全文
摘要:
欧几里得算法就是我们常说的辗转相除法,辗转相除法可以用来求最大公约数,知道最大公约数还可以求最小公倍数。gcd在好像也有库函数__gcd int Gcd(int a, int b) { while(b != 0) { int r = b; b = a % b; a = r; } return a; 阅读全文
摘要:
C. Fountains time limit per test 2 seconds memory limit per test 256 megabytes input standard input output standard output C. Fountains time limit per 阅读全文
摘要:
D. Field expansion time limit per test 1 second memory limit per test 256 megabytes input standard input output standard output D. Field expansion tim 阅读全文
摘要:
我从来没想过自己可以被支配的这么惨,大神讲这个场不容易掉分的啊 A. Carrot Cakes time limit per test 1 second memory limit per test 256 megabytes input standard input output standard 阅读全文
摘要:
D. Dynamic Problem Scoring time limit per test 2 seconds memory limit per test 256 megabytes input standard input output standard output D. Dynamic Pr 阅读全文
摘要:
D - Throwing cards away I Given is an ordered deck of n cards numbered 1 to n with card 1 at the top and card n at the bottom. The following operation 阅读全文
摘要:
F - Compound Words You are to find all the two-word compound words in a dictionary. A two-word compound word is a word in the dictionary that is the c 阅读全文