Jiang Weilai did not want to participate in the ACM competition, but now that he has formed a team, naturally he will not just come to play soy sauce, but take the two friends in the dormitory and start the non-stop practice day and night.
I can only take half a day out on the weekend to go to the company to take a look.
Of the four games, jigsaw puzzles have slowly lost their popularity, with only occasional newcomers and loyal enthusiasts coming down to play, and the average number of daily online users is less than 10,000.
The other three are still relatively stable.
Even after Ascendas released "Daily Cool Running", Jiang Cheng's "Metro Cool Running" was only turbulent for a few days, and then the number of online people was still as stable as an old dog.
Chen Feng is already pioneering the company.
The end game department was formed and the research and development of a new end game engine began.
Jiang wanted the company to develop the classic game "PUBG", but when he thought of the current hardware level, he gave up this idea.
The 750TI graphics card with low special effects has not yet come out, and it is still too difficult to engage in this shooting game.
After providing the idea of "Entertainment", Jiang Cheng did not have the energy to take care of it, and let Chen Feng be responsible for following up the whole process, and he would just look at the test situation at the end.
As for Maple Fire Chinese Network, the traffic has stabilized.
Although it is not as big as the big station of Chenxi, there are still many people who like to come here to read.
The page is refreshing and concise, and through the advantages of the algorithm, it better understands the reader's preferences and makes special recommendations.
There are also more excellent books.
This is currently mainly losing money, Jiang Cheng does not care much, it is nothing more than sticking some money every month.
Xu Du Bar has registered an account in the BI station, with this station and Youtu as the main operating position, after the popularity of "Deep Space", it has been undertaking some dubbing business, basically self-sufficiency is no problem.
In the special effects studio, this group of programmers is still working on Maple Fire PE special effects production software, and has not yet received new business.
Let's not do it for now.
----└(^o^)┘---
On October 10th, in the computer room of Mizuki University, eight teams began the campus qualifiers.
Of course, the registered team names are also varied.
Duan Bo, Li Zhengtao and Zhong Tian's team is named Adjudicator.
In Chinese, it means: adjudicator.
The team of Jiang Cheng, Zhu Jian and Xu Siyuan is called 9#F4.
Meaning: In fact, it is not interesting, it refers to the four marshals of the computer department.
In addition, there are also team names with their own personalities, such as Fort Wither, No Thought in this Life, FDI, etc.
Li Zhengtao and his group sat next to Jiang Cheng.
Zhong Tian looked at Zhu Jian with a defiant look in his eyes.
"Kind of Comebibi?"
"Compare with whom! Whatever you want to compare, you will accompany you. Zhu Jian couldn't stand the provocation and directly exploded.
Zhong Tian smiled, "Of course, it is much more than AC, as well as the duration, the loser runs ten laps in the playground."
Xu Siyuan stopped Zhu Jian and said in a low voice, "They have been training for a long time, we have just practiced, Jiang Cheng will know some, let's not be stupid."
"Damn, this Zhong Tian is too deceitful, you see his damage." Zhu Jian cursed.
Jiang Cheng was not worried, "It's okay, there is me."
Zhu Jian smiled, "Don't worry, the second brother is here." Then he
said to Zhong Tian, "Well, it's better than that." Xu
Siyuan looked helpless.
This is really going to lose, he plans to cover his T-shirt and secretly withdraw.
Although Li Zhengtao did not participate, he listened and did not say a word.
Zhong Tian couldn't be too happy, "Zhu Jian, this is what you said yourself, but if you lose, the whole team will run!"
Jiang Cheng couldn't help but smile.
"Jiang Cheng, what are you laughing at?"
"I think of happy things." Jiang Cheng said lightly.
"What happy thing?"
"My dog is about to give birth."
"...,"
Zhong Tian snorted coldly, "You guys wait." "
At 9 a.m., the tryouts began.
Still Yang Mingde took the exam, and also brought a tutor.
In groups of three, only one monitor was turned on in front.
Jiang Cheng undoubtedly sat in the middle, next to Zhu Jian, and Xu Siyuan sat slightly to the side.
Because it was only a tryout, the number of questions was not as many as the actual competition, there were only 5 questions, and the time was 3 hours.
Jiang Cheng glanced over and looked at the question first.
Zhu Jian also looked at it and said, "I feel that the first and second questions are better."
"Okay, let's think about one or two questions first." Jiang Cheng said directly.
The first question is the leap year problem.
Input requires that the first line of the input be a positive integer t ( t<=10000 ), and t represents how many sets of input data there are. Each set of data consists of the input year n(0<=n <= 2500).
Output requires that the output be "yes" to determine whether the year is a leap year, otherwise "no".
It doesn't feel difficult, it's just a matter of determining whether it's a leap year or not.
Just use the while loop.
Of course, this was the result of Jiang Cheng's first second in his heart.
After all, it is three people, and everyone divides the work and cooperates.
Jiang Cheng looked at the three, four, or five questions again.
A building block problem, a sequence problem, and a prime number problem.
"Second brother, look at the last one, it's a math problem." After Jiang Cheng saw it, he directly reminded him.
From easy to difficult, with only one computer, Jiang Cheng and they started from the first question to understand the problem.
Because it was not difficult, Zhu Jian thought of it at once, pointed to the screen and said, "Let's start..."
Jiang Cheng typed the code extremely quickly, and never made a mistake, naturally he was responsible.
As Zhu Jian spoke, Jiang Cheng's fingers flew up like butterflies.
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
int leapYear(int n){
if(((n % 4 == 0)&&(n % 100))||(n % 400 == 0))
return 1;
return 0;
}
......
The speed is very fast, so that Zhu Jian is a little unable to speak.
In the first question, several people took another look and felt that it was already concise.
Jiang Cheng submitted the answer, and AC passed.
Next, the second question, system conversion.
Fast as usual.
Jiang Cheng also proposed improvements to Zhu Jian's idea, making the program simpler and the number of lines very well controlled.
Time passes little by little.
When the two hours were about to arrive, Jiang Cheng was already working on the last topic.
Zhu Jian had some thoughts.
Xu Siyuan is still familiar with this piece, but how to achieve it with a computer, the understanding is still a little inaccurate.
The hardest topics appeared.
Jiang Chengyuguang glanced at Li Zhengtao and them, although the discussion was very small, but obviously they also encountered this problem.
The internal computer deduced several times and simplified the program a lot.
"Try this." Jiang Cheng played the piano with both hands, quickly entered the code, and added two recursive nests, "The total amount is not large, and it can be enumerated directly violently."
Zhu Jian swallowed, "Third brother is awesome."
After the program was written, Xu Siyuan suddenly said, "Wait, did you consider the special prime number of 2?"
Jiang Cheng was stunned, and immediately reacted, just about to add code.
I only heard Zhong Tian on the side say loudly, "We're going to win, you guys are going to run ten laps in the playground!"
For a while, Zhu Jian and Xu Siyuan couldn't help but become anxious.
Is it really going to lose?
Xu Siyuan was already thinking about how to sneak away later.
"Hurry up again!" Sweat welled up on Zhu Jian's face, and he wiped it with his sleeve.
Jiang Cheng's ten fingers have already been beaten into lightning!
Time ticked in my heart.
It seems that the final decisive moment is recorded!
Li Zhengtao was also frantically typing the code at this time, knocking his finger out of the afterimage.
He had a hunch that the other party was going to submit it!
The next moment, almost at the same time.
Li Zhengtao hit enter and clicked submit.
And Jiang Cheng, at the same time, the corners of his mouth raised slightly, and submitted the answer.
Two voices sounded almost simultaneously.
“Wrong Anwser!"
“Accepted!"
You'll Also Like
-
Infinity starting from giants
Chapter 1579 8 hours ago -
Cheating players in Marvel
Chapter 1924 8 hours ago -
Reborn Xiangjiang Tycoon Growth
Chapter 1940 8 hours ago -
Rebirth 79: I opened a bank in the United States
Chapter 1002 8 hours ago -
Infinite Cinema: Play Ultron and Destroy the World at the beginning
Chapter 1216 8 hours ago -
After Douluo was abandoned, I became invincible
Chapter 404 8 hours ago -
Harry Potter: Charlie and the Candy Factory
Chapter 259 8 hours ago -
Meiman: All the famous scenes were exposed by me
Chapter 551 8 hours ago -
Dragon Ball Devil Buu
Chapter 116 8 hours ago -
Monkey King in Pirate
Chapter 292 8 hours ago