KRAFTON AI R&D Hackathon · Round 1 · Day 2 · 4 Hours · Spring 2026
A binary signal has been intercepted. It looks random — but it isn’t. Every bit after an initial random seed is generated by XOR-ing some specific earlier bits — but with noise. Your mission:
seq[0], seq[1], ..., seq[W-1] ← random i.i.d. Bernoulli(0.5)
For n ≥ W:
seq[n] = seq[n - d1] ⊕ seq[n - d2] ⊕ … ⊕ seq[n - dS] ⊕ e[n]
where e[n] ∼ Bernoulli(0.2) i.i.d. (noise)
• d1 < d2 < … < dS are the hidden offsets
• S (how many offsets) is also hidden
• W = dS (first W bits are the random seed)
• The function is XOR — that much is given
• Each bit is flipped independently with probability 0.2
• Bounds: S ≤ 16, W ≤ 64
round1_p2_data.txt — 2,000 noisy sequences, each 256 bits.0 or 1.Here are the first 64 bits of a new sequence generated by the same rule without noise. Predict the remaining 192 bits.
0000010100011010010101100101001110100011110010110011010000111010
| Field | Type | Description |
|---|---|---|
answer | string | 192 bits — the continuation of the test sequence (positions 64–255) |
Submit exactly 192 characters of 0 and 1, plus a ZIP file.
Submit a single .zip file containing:
.py) that reproduces your results.SparseTap · KRAFTON AI R&D Hackathon · Round 1, Day 2
KRAFTON AI R&D Hackathon · Round 1 · Day 2 · 4 Hours · Spring 2026
이진 신호가 수신되었습니다. 무작위로 보이지만 — 그렇지 않습니다. 초기 무작위 시드 이후의 모든 비트는 특정 이전 비트들의 XOR로 생성됩니다 — 단, 노이즈가 있습니다. 미션:
seq[0], seq[1], ..., seq[W-1] ← 무작위 i.i.d. Bernoulli(0.5)
n ≥ W 인 경우:
seq[n] = seq[n - d1] ⊕ seq[n - d2] ⊕ … ⊕ seq[n - dS] ⊕ e[n]
여기서 e[n] ∼ Bernoulli(0.2) i.i.d. (노이즈)
• d1 < d2 < … < dS 는 숨겨진 오프셋
• S (오프셋의 수)도 숨겨져 있음
• W = dS (처음 W 비트는 무작위 시드)
• 함수는 XOR — 이것은 주어진 정보
• 각 비트는 독립적으로 20% 확률로 뒤집힘
• 범위: S ≤ 16, W ≤ 64
round1_p2_data.txt — 2,000개 노이즈 시퀀스, 각 256비트.0 또는 1.동일한 규칙으로 노이즈 없이 생성된 새 시퀀스의 처음 64비트입니다. 나머지 192비트를 예측하세요.
0000010100011010010101100101001110100011110010110011010000111010
| 필드 | 타입 | 설명 |
|---|---|---|
answer | string | 192 비트 — 테스트 시퀀스의 연속 (위치 64–255) |
0과 1로 된 정확히 192자와 ZIP 파일을 제출하세요.
다음을 포함하는 단일 .zip 파일을 제출하세요:
.py).SparseTap · KRAFTON AI R&D Hackathon · Round 1, Day 2