S1. Sum Game
의견: 0
Time limit: 1 second
Annie has two favourite baseball teams: the Swifts and the
Semaphores. She has followed them throughout the season, which is now
over. The season lasted for \(N\) days.
Both teams played exactly one game on each day.
For each day, Annie recorded the number of runs scored by the Swifts
on that day. She also recorded this information for the Semaphores.
She would like you to determine the largest integer \(K\) such that \(K \leq N\) and the Swifts and the Semaphores had scored the same
total number of runs \(K\) days after
the start of the season. The total number of runs scored by a team after
\(K\) days is the sum of the number of
runs scored by the team in all games before or on the \(K\)-th day.
For example, if the Swifts and the Semaphores have the same total
number of runs at the end of the season, then you should output \(N\). If the Swifts and the Semaphores never
had the same number of runs after \(K\)
games, for any value of \(K \leq N\),
then output 0.
\(K \leq N\)
\((1 \leq N \leq 100\ 000)\)
\(N \leq 1000\)
The first line of
input will contain an integer \(N\)
\((1 \leq N \leq 100\ 000)\). The
second line will contain \(N\)
space-separated non-negative integers representing the number of runs
scored by the Swifts on each day, in order. The third line will contain
\(N\) space-separated non-negative
integers representing the number of runs scored by the Semaphores on
each day, in order. You may assume that each team scored at most 20 runs
in any single game.
For 7 of the 15 points available, \(N \leq 1000\).
Output the largest integer \(K\)
such that \(K \leq N\) and the Swifts
and the Semaphores have the same total number of runs after \(K\) days.
3
1 3 3
2 2 62After 2 days, each team had scored a total of 4 runs.
3
1 2 3
4 5 60The only time when the Swifts and the Semaphores had scored the same
number of runs was the beginning of the season.
4
1 2 3 4
1 3 2 44The Swifts and Semaphores have the same number of total runs after
the first game, and after the third game, and after the fourth game. We
take the largest of these values (1, 3 and 4) and output 4.
평가 및 의견
S1. Sum Game
Log in to rate problems.
아직 의견이 없습니다. 자격이 된다면 위 양식에서 가장 먼저 평가해 보세요.
풀이 제출
S1. Sum Game