RiseOJ는 solved.ac와 제휴 관계가 없습니다. 티어 아이콘 © solved.ac. solved.ac
포럼
R03616

S2. Cryptogram Cracking Club

Unrated 레이팅 미적용
난이도
2s
시간 제한
256MB
메모리 제한
0
맞았습니다!!
0
제출 수
0.0%
정답률
레이팅

의견: 0

설명

Cyrene, the captain of the Cryptogram Cracking Club (CCC), came
across a concerningly long cipher. Conveniently, this cipher is composed
of lower-case characters (a-z). Comfortingly, the cipher is
composed of a pattern that repeats infinitely.

Cyrene wishes to locate the \(c\)-th
character of the cipher. To make your job easier, the CCC members have
extracted the repeated pattern and compressed it using the Run-Length
Encoding (RLE) algorithm, which replaces consecutive repeated characters
with a single occurrence of the character followed by a count of how
many times it was repeated. For example, for the pattern
aaaabccdddd, the RLE algorithm outputs
a4b1c2d4.

You are given the output of the RLE algorithm for a certain pattern.
Can you determine the \(c\)-th
character of the long cipher that is formed by repeating this pattern
infinitely?

제약
입력 형식

The first line of input will consist of a string \(S\), representing a pattern produced by the
RLE algorithm. The length of \(S\) will
be at least \(2\) and at most \(2\cdot 10^5\). Additionally, all numbers
appearing in \(S\) are between \(1\) and \(10^{12}\).

The next line of input contains a single integer \(c\), representing the index of the
character you wish to locate, starting from index \(0\).

출력 형식

Output the \(c\)-th character of the
long cipher.

서브태스크
서브태스크점수설명

1

40점

\(0\le c \le 2000\) — All numbers appearing in \(S\) are between \(1\) and \(9\) (inclusive) and the length of the repeated pattern is at most \(2000\) characters.

2

20점

\(0\le c \le 10^6\) — The length of the repeated pattern is at most \(10^6\) characters.

3

20점

\(0\le c \le 10^{12}\) — The length of the repeated pattern is at most \(10^6\) characters.

4

20점

\(0\le c \le 10^{12}\) — No additional constraints.

예제 1
입력
r2d2
8
출력
r
설명

The output of the RLE algorithm r2d2 corresponds to the
pattern rrdd, which creates the infinitely long cipher
rrddrrddrrddrrdd..., where the \(c = 8\)th character is r.

예제 2
입력
a4b1c2d10
100
출력
d
설명

The output of the RLE algorithm a4b1c2d10 corresponds to
the pattern aaaabccdddddddddd. When repeated infinitely,
the \(c = 100\)th character is
d.

문제 정보

생성자가 기록되지 않았습니다.

출처 CCC 2025 Senior

평가 및 의견

S2. Cryptogram Cracking Club

개요
출제자 난이도 Unrated 레이팅 미적용 의견 0 / 50 공개 집계 (커뮤니티 난이도, 주요 주제, 품질)는 의견이 충분히 모이면 공개됩니다.

Log in to rate problems.

개별 의견

아직 의견이 없습니다. 자격이 된다면 위 양식에서 가장 먼저 평가해 보세요.

풀이 제출

S2. Cryptogram Cracking Club

게스트로 둘러보고 있습니다. 로그인하면 풀이를 제출하고 진행 상황을 확인할 수 있습니다. 로그인하고 제출하기
공개
C++20 Tab 들여쓰기 · Ctrl+/ 주석 토글 · Enter 자동 들여쓰기
1 1 1 0 공백: 4 · UTF-8